aboutsummaryrefslogtreecommitdiff
path: root/build/scope.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-18 14:41:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-18 14:41:45 +0200
commit63e7a4a77cb8ceed7b42561fe3202b0b48d86db6 (patch)
treebde5a79522225f32ec188ba46d0834486c30f00f /build/scope.cxx
parent28c82c861e38fe05a25e916563e0551ed8fce91e (diff)
Move path and filesystem from build2 to libbutl
Diffstat (limited to 'build/scope.cxx')
-rw-r--r--build/scope.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scope.cxx b/build/scope.cxx
index 2b24702..5bd2b62 100644
--- a/build/scope.cxx
+++ b/build/scope.cxx
@@ -119,14 +119,14 @@ namespace build
// Normally we would have a scope for the full path so try
// that before making any copies.
//
- auto i (base::find (k));
+ auto i (scope_map_base::find (k));
if (i != end ())
return i->second;
for (dir_path d (k.directory ());; d = d.directory ())
{
- auto i (base::find (d));
+ auto i (scope_map_base::find (d));
if (i != end ())
return i->second;