aboutsummaryrefslogtreecommitdiff
path: root/build2/types-parsers.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/types-parsers.hxx')
-rw-r--r--build2/types-parsers.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/build2/types-parsers.hxx b/build2/types-parsers.hxx
index beea977..db55c05 100644
--- a/build2/types-parsers.hxx
+++ b/build2/types-parsers.hxx
@@ -24,6 +24,9 @@ namespace build2
{
static void
parse (path&, bool&, scanner&);
+
+ static void
+ merge (path& b, const path& a) {b = a;}
};
template <>
@@ -31,6 +34,9 @@ namespace build2
{
static void
parse (dir_path&, bool&, scanner&);
+
+ static void
+ merge (dir_path& b, const dir_path& a) {b = a;}
};
}
}