diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-18 07:00:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-18 07:56:09 +0200 |
commit | f50a3a56b59698ffce3965711898a94e7849aa78 (patch) | |
tree | d52f6e2343d5cc4a1f83861e61e19520c22c7ae4 /libbuild2/build/script/parser.cxx | |
parent | f80c8ff7ff3b1eef22a3c90943f324d45d855b97 (diff) |
Complete low verbosity diagnostics rework
Diffstat (limited to 'libbuild2/build/script/parser.cxx')
-rw-r--r-- | libbuild2/build/script/parser.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbuild2/build/script/parser.cxx b/libbuild2/build/script/parser.cxx index b406f12..5dd9179 100644 --- a/libbuild2/build/script/parser.cxx +++ b/libbuild2/build/script/parser.cxx @@ -1429,12 +1429,12 @@ namespace build2 exec_lines (begin, end, exec_cmd); } - names parser:: + pair<names, location> parser:: execute_diag_preamble (const scope& rs, const scope& bs, environment& e, const script& s, runner& r, bool diag, bool enter, bool leave) { - tracer trace ("exec_diag_preamble"); + tracer trace ("execute_diag_preamble"); assert (!s.diag_preamble.empty ()); @@ -1499,7 +1499,7 @@ namespace build2 if (leave) runner_->leave (e, s.end_loc); - return ns; + return make_pair (ns, dl.tokens.front ().location ()); } void parser:: |