aboutsummaryrefslogtreecommitdiff
path: root/build2/bin/init.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/bin/init.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/bin/init.cxx')
-rw-r--r--build2/bin/init.cxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/build2/bin/init.cxx b/build2/bin/init.cxx
index 26364b4..31431a3 100644
--- a/build2/bin/init.cxx
+++ b/build2/bin/init.cxx
@@ -364,7 +364,7 @@ namespace build2
const string& s (cast<string> (l));
if (s.empty () ||
- (!path::traits::is_separator (s.back ()) &&
+ (!path::traits_type::is_separator (s.back ()) &&
s.find ('*') == string::npos))
{
fail << "missing '*' in binutils pattern '" << s << "'";
@@ -605,7 +605,9 @@ namespace build2
// This can be either a pattern or a fallback search directory.
//
const string* pat (cast_null<string> (rs["bin.pattern"]));
- bool fb (pat != nullptr && path::traits::is_separator (pat->back ()));
+
+ bool fb (pat != nullptr &&
+ path::traits_type::is_separator (pat->back ()));
// Don't save the default value to config.build so that if the user
// changes, say, the C++ compiler (which hinted the pattern), then
@@ -763,7 +765,9 @@ namespace build2
// This can be either a pattern or a fallback search directory.
//
const string* pat (cast_null<string> (rs["bin.pattern"]));
- bool fb (pat != nullptr && path::traits::is_separator (pat->back ()));
+
+ bool fb (pat != nullptr &&
+ path::traits_type::is_separator (pat->back ()));
auto p (
config::required (
@@ -874,7 +878,9 @@ namespace build2
// This can be either a pattern or a fallback search directory.
//
const string* pat (cast_null<string> (rs["bin.pattern"]));
- bool fb (pat != nullptr && path::traits::is_separator (pat->back ()));
+
+ bool fb (pat != nullptr &&
+ path::traits_type::is_separator (pat->back ()));
auto p (
config::required (