From 2a7a93bb9e6f828ea0d4b59b400fbb2e16657c9c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 3 Jun 2019 12:55:14 +0300 Subject: Rename traits alias to traits_type for basic_path, basic_url, and string_table class templates --- libbutl/project-name.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbutl/project-name.cxx') 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 (); } -- cgit v1.1