aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
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/utility.cxx
parente6de9801b4b38c9b5d01016e43149f507a063f68 (diff)
Adapt to renaming traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index 74c1350..91fc49e 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -38,14 +38,14 @@ namespace bpkg
tmp_file (const string& p)
{
assert (!temp_dir.empty ());
- return auto_rmfile (temp_dir / path::traits::temp_name (p));
+ return auto_rmfile (temp_dir / path::traits_type::temp_name (p));
}
auto_rmdir
tmp_dir (const string& p)
{
assert (!temp_dir.empty ());
- return auto_rmdir (temp_dir / dir_path (path::traits::temp_name (p)));
+ return auto_rmdir (temp_dir / dir_path (path::traits_type::temp_name (p)));
}
void