aboutsummaryrefslogtreecommitdiff
path: root/libbutl/project-name.cxx
diff options
context:
space:
mode:
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 ();
}