aboutsummaryrefslogtreecommitdiff
path: root/build2/name.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/name.hxx')
-rw-r--r--build2/name.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/build2/name.hxx b/build2/name.hxx
index 20a8aa0..aac0ad1 100644
--- a/build2/name.hxx
+++ b/build2/name.hxx
@@ -43,6 +43,7 @@ namespace build2
name (string v): value (move (v)) {}
name (dir_path d): dir (move (d)) {}
name (string t, string v): type (move (t)), value (move (v)) {}
+ name (dir_path d, string v): dir (move (d)), value (move (v)) {}
name (dir_path d, string t, string v)
: dir (move (d)), type (move (t)), value (move (v)) {}