diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-09 15:10:56 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-11 14:31:39 +0300 |
commit | 32f153664e7b6cadfb518b83e12b9768a150d709 (patch) | |
tree | 706d683404d412e29e4cbd4640ce8b2780689c65 /libbuild2/script/timeout.ixx | |
parent | ec16a07c4bc3f3552ba5b4d09d3c5c375fb19e35 (diff) |
Prefix pseudo-builtin diagnostincs messages with their names
Diffstat (limited to 'libbuild2/script/timeout.ixx')
-rw-r--r-- | libbuild2/script/timeout.ixx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libbuild2/script/timeout.ixx b/libbuild2/script/timeout.ixx index 755af17..e31ed07 100644 --- a/libbuild2/script/timeout.ixx +++ b/libbuild2/script/timeout.ixx @@ -4,9 +4,12 @@ namespace build2 { inline optional<timestamp> - parse_deadline (const string& s, const char* what, const location& l) + parse_deadline (const string& s, + const char* what, + const char* prefix, + const location& l) { - if (optional<duration> t = parse_timeout (s, what, l)) + if (optional<duration> t = parse_timeout (s, what, prefix, l)) return system_clock::now () + *t; else return nullopt; |