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.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/bdep/types-parsers.hxx b/bdep/types-parsers.hxx
index 9e76237..3da355c 100644
--- a/bdep/types-parsers.hxx
+++ b/bdep/types-parsers.hxx
@@ -48,6 +48,19 @@ namespace bdep
static void
merge (dir_path& b, const dir_path& a) {b = a;}
};
+
+ template <>
+ struct parser<stdout_format>
+ {
+ static void
+ parse (stdout_format&, bool&, scanner&);
+
+ static void
+ merge (stdout_format& b, const stdout_format& a)
+ {
+ b = a;
+ }
+ };
}
}