diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-30 16:34:41 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 12:15:10 +0300 |
commit | 0d3248f51515d92d5229cd5e6ef30f1f963d7a5f (patch) | |
tree | ac46bd233ebbb7df19b74e9b2ff64b56418fc8fc /libbuild2/functions-project-name.cxx | |
parent | 6ce929cf4fc5059f37e06312a0ec3c241dbf88ed (diff) |
Rename $filesystem.path_match() to $path.match()
Diffstat (limited to 'libbuild2/functions-project-name.cxx')
-rw-r--r-- | libbuild2/functions-project-name.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/functions-project-name.cxx b/libbuild2/functions-project-name.cxx index f70a1e7..6058742 100644 --- a/libbuild2/functions-project-name.cxx +++ b/libbuild2/functions-project-name.cxx @@ -14,7 +14,7 @@ namespace build2 { function_family f (m, "project_name"); - f["string"] = [](project_name p) {return move (p).string ();}; + f["string"] = [](project_name p) {return move (p).string ();}; f["base"] = [](project_name p, optional<string> ext) { |