aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/windows-rpath.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cc/windows-rpath.cxx')
-rw-r--r--build2/cc/windows-rpath.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/cc/windows-rpath.cxx b/build2/cc/windows-rpath.cxx
index 0a19db2..9ad2602 100644
--- a/build2/cc/windows-rpath.cxx
+++ b/build2/cc/windows-rpath.cxx
@@ -92,7 +92,7 @@ namespace build2
//
// Though this can happen on MinGW with direct DLL link...
//
- size_t p (path::traits::find_extension (f));
+ size_t p (path::traits_type::find_extension (f));
if (p == string::npos || casecmp (f.c_str () + p + 1, "dll") != 0)
return;
@@ -170,7 +170,7 @@ namespace build2
}
else
{
- size_t p (path::traits::find_extension (f));
+ size_t p (path::traits_type::find_extension (f));
if (p != string::npos && casecmp (f.c_str () + p + 1, "dll") == 0)
{