aboutsummaryrefslogtreecommitdiff
path: root/build/parser
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-03-02 09:52:59 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-03-02 09:52:59 +0200
commit4a9ee48613cf5c59e071400280b62358eb79987e (patch)
tree5a5546a3b090f88db00d21caccced186f5765786 /build/parser
parentfbd3c230d3861084b7316a6d5a8597cb00c9510b (diff)
Indicate whether token is separated from previous one by whitespaces
Diffstat (limited to 'build/parser')
-rw-r--r--build/parser2
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_;