diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-03 14:56:31 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-03 14:56:31 +0200 |
commit | 6bd285316c4bceb38d5a7e5e9967cc84302056b4 (patch) | |
tree | 534fd589b16a560131b52355bd603205536a9cfb /libbuild2/cc/parser.cxx | |
parent | 7c0629063ef64b6c7732e7ac94a6ecefcda4d828 (diff) |
Generalize and export cc::lexer
Diffstat (limited to 'libbuild2/cc/parser.cxx')
-rw-r--r-- | libbuild2/cc/parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/parser.cxx b/libbuild2/cc/parser.cxx index dc5093f..3e84edb 100644 --- a/libbuild2/cc/parser.cxx +++ b/libbuild2/cc/parser.cxx @@ -17,7 +17,7 @@ namespace build2 void parser:: parse (ifdstream& is, const path_name& in, unit& u) { - lexer l (is, in); + lexer l (is, in, true /* preprocessed */); l_ = &l; u_ = &u; |