diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-14 11:56:35 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-14 11:57:28 +0200 |
commit | cbea7fec9a493e543ebc6284d17041c9e91cb28f (patch) | |
tree | 8179ca177ffb36ecdee18a02b207620fc4d7c2c1 /libbuild2/test | |
parent | 3a2969cf54fb21273b7949095c709f6aa9a2a6d9 (diff) |
Disable re-parse of sole expansions in Buildscript
Diffstat (limited to 'libbuild2/test')
-rw-r--r-- | libbuild2/test/script/parser.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/test/script/parser.hxx b/libbuild2/test/script/parser.hxx index 3b008aa..c63bce6 100644 --- a/libbuild2/test/script/parser.hxx +++ b/libbuild2/test/script/parser.hxx @@ -30,7 +30,7 @@ namespace build2 // Pre-parse. Issue diagnostics and throw failed in case of an error. // public: - parser (context& c): build2::script::parser (c) {} + parser (context& c): build2::script::parser (c, true /* relex */) {} void pre_parse (script&); |