aboutsummaryrefslogtreecommitdiff
path: root/bdep/types.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-06-03 13:03:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-06-03 13:03:46 +0300
commitecb2654f987a2d612c8599984110aa673b6e1a73 (patch)
treec9926580e0870dd74917d87da89a85910a79de3c /bdep/types.hxx
parent52f1e90df5a8c98c5dc9ae3d50f7c24928c7b69b (diff)
Adapt to renaming traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'bdep/types.hxx')
-rw-r--r--bdep/types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bdep/types.hxx b/bdep/types.hxx
index ef10ed3..b449551 100644
--- a/bdep/types.hxx
+++ b/bdep/types.hxx
@@ -131,7 +131,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;
}
}