From edab35e216bc3839915129e54f98160428634283 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 12 Aug 2019 14:56:03 +0300 Subject: Add support for default options files --- bdep/types-parsers.hxx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'bdep/types-parsers.hxx') 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;} }; } } -- cgit v1.1