aboutsummaryrefslogtreecommitdiff
path: root/libbutl/project-name.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-06-03 12:55:14 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-06-03 12:55:14 +0300
commit2a7a93bb9e6f828ea0d4b59b400fbb2e16657c9c (patch)
treecbf988364a2daab7e72f7e2f6d23f6442caf347e /libbutl/project-name.cxx
parent57a9066812b06262265594eac7c62c394f51e947 (diff)
Rename traits alias to traits_type for basic_path, basic_url, and string_table class templates
Diffstat (limited to 'libbutl/project-name.cxx')
-rw-r--r--libbutl/project-name.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/project-name.cxx b/libbutl/project-name.cxx
index 43da5a7..4c04e5f 100644
--- a/libbutl/project-name.cxx
+++ b/libbutl/project-name.cxx
@@ -85,7 +85,7 @@ namespace butl
{
using std::string;
- size_t p (path::traits::find_extension (value_));
+ size_t p (path::traits_type::find_extension (value_));
if (e != nullptr &&
p != string::npos &&
@@ -100,7 +100,7 @@ namespace butl
{
using std::string;
- size_t p (path::traits::find_extension (value_));
+ size_t p (path::traits_type::find_extension (value_));
return p != string::npos ? string (value_, p + 1) : string ();
}