aboutsummaryrefslogtreecommitdiff
path: root/build2/functions-path.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-06-03 12:59:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-06-03 13:00:04 +0300
commitd37709e5c27b1fe7b98de57247449c6272c79580 (patch)
tree9d453f1f0fe949175b1d35eff7121a984656c14d /build2/functions-path.cxx
parent13c05ef5a633d3779e4b1b01a0306755e27c2c4b (diff)
Adapt to renaming traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'build2/functions-path.cxx')
-rw-r--r--build2/functions-path.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/functions-path.cxx b/build2/functions-path.cxx
index 1bd4fc7..6b435f5 100644
--- a/build2/functions-path.cxx
+++ b/build2/functions-path.cxx
@@ -25,7 +25,7 @@ namespace build2
static value
concat_path_string (path l, string sr)
{
- if (path::traits::is_separator (sr[0])) // '\0' if empty.
+ if (path::traits_type::is_separator (sr[0])) // '\0' if empty.
{
sr.erase (0, 1);
path pr (move (sr));
@@ -49,7 +49,7 @@ namespace build2
static value
concat_dir_path_string (dir_path l, string sr)
{
- if (path::traits::is_separator (sr[0])) // '\0' if empty.
+ if (path::traits_type::is_separator (sr[0])) // '\0' if empty.
sr.erase (0, 1);
path pr (move (sr));