aboutsummaryrefslogtreecommitdiff
path: root/bbot/types.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-06-03 13:02:04 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-06-03 13:02:04 +0300
commit8785388d59975192b620d1ec581716c58696eaea (patch)
treea2358f30413fe7a5401c076dda97b11650ea33ab /bbot/types.hxx
parentc018ba477102970159c8fc4321f3eb8cbc873770 (diff)
Adapt to renaming traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'bbot/types.hxx')
-rw-r--r--bbot/types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/types.hxx b/bbot/types.hxx
index 6dc55f5..0318e94 100644
--- a/bbot/types.hxx
+++ b/bbot/types.hxx
@@ -104,7 +104,7 @@ namespace std
operator<< (ostream& os, const ::butl::path& p)
{
string r (p.representation ());
- ::butl::path::traits::canonicalize (r);
+ ::butl::path::traits_type::canonicalize (r);
return os << r;
}
}