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