From bf2cf8cd53361826e51e01c2904f6fb4cb7502dc Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 16 Aug 2019 22:39:07 +0300 Subject: Add support for default options files --- build2/types-parsers.hxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'build2/types-parsers.hxx') 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;} }; } } -- cgit v1.1