From e755de789e146beea66bf6a4b55685034502df41 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sun, 25 Jun 2017 20:39:53 +0300 Subject: Make path value type to be base for dir_path --- build2/functions-path.cxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'build2/functions-path.cxx') diff --git a/build2/functions-path.cxx b/build2/functions-path.cxx index 6fff94d..81cd01f 100644 --- a/build2/functions-path.cxx +++ b/build2/functions-path.cxx @@ -74,8 +74,7 @@ namespace build2 // string // - f["string"] = [](path p) {return move (p).string ();}; - f["string"] = [](dir_path p) {return move (p).string ();}; + f["string"] = [](path p) {return move (p).string ();}; f["string"] = [](paths v) { @@ -95,8 +94,7 @@ namespace build2 // representation // - f["representation"] = [](path p) {return move (p).representation ();}; - f["representation"] = [](dir_path p) {return move (p).representation ();}; + f["representation"] = [](path p) {return move (p).representation ();}; f["representation"] = [](paths v) { @@ -116,7 +114,7 @@ namespace build2 // canonicalize // - f["canonicalize"] = [](path p) {p.canonicalize (); return p;}; + f["canonicalize"] = [](path p) {p.canonicalize (); return p;}; f["canonicalize"] = [](dir_path p) {p.canonicalize (); return p;}; f["canonicalize"] = [](paths v) -- cgit v1.1