aboutsummaryrefslogtreecommitdiff
path: root/bdep/types-parsers.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/types-parsers.hxx')
-rw-r--r--bdep/types-parsers.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/bdep/types-parsers.hxx b/bdep/types-parsers.hxx
index 5cd4f65..c6e1cc6 100644
--- a/bdep/types-parsers.hxx
+++ b/bdep/types-parsers.hxx
@@ -25,6 +25,9 @@ namespace bdep
{
static void
parse (url&, bool&, scanner&);
+
+ static void
+ merge (url& b, const url& a) {b = a;}
};
template <>
@@ -32,6 +35,9 @@ namespace bdep
{
static void
parse (path&, bool&, scanner&);
+
+ static void
+ merge (path& b, const path& a) {b = a;}
};
template <>
@@ -39,6 +45,9 @@ namespace bdep
{
static void
parse (dir_path&, bool&, scanner&);
+
+ static void
+ merge (dir_path& b, const dir_path& a) {b = a;}
};
}
}