aboutsummaryrefslogtreecommitdiff
path: root/build2/functions-path.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/functions-path.cxx')
-rw-r--r--build2/functions-path.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/build2/functions-path.cxx b/build2/functions-path.cxx
index 4542858..45ec8ed 100644
--- a/build2/functions-path.cxx
+++ b/build2/functions-path.cxx
@@ -10,10 +10,12 @@ using namespace std;
namespace build2
{
static value
- path_thunk (vector_view<value> args, const function_overload& f)
+ path_thunk (const scope& base,
+ vector_view<value> args,
+ const function_overload& f)
try
{
- return function_family::default_thunk (move (args), f);
+ return function_family::default_thunk (base, move (args), f);
}
catch (const invalid_path& e)
{