diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-02 09:52:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-02 09:52:59 +0200 |
commit | 4a9ee48613cf5c59e071400280b62358eb79987e (patch) | |
tree | 5a5546a3b090f88db00d21caccced186f5765786 /build/parser | |
parent | fbd3c230d3861084b7316a6d5a8597cb00c9510b (diff) |
Indicate whether token is separated from previous one by whitespaces
Diffstat (limited to 'build/parser')
-rw-r--r-- | build/parser | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/parser b/build/parser index 4f099fe..53fc83c 100644 --- a/build/parser +++ b/build/parser @@ -77,7 +77,7 @@ namespace build lexer* lexer_; scope* scope_; - token peek_ {token_type::eos, 0, 0}; + token peek_ {token_type::eos, false, 0, 0}; bool peeked_ {false}; std::unordered_set<path> include_; |