From ba183549470509d44c9c422ede4910ceaa4ab637 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 22 Jan 2009 17:03:26 -0400 Subject: Whitespace changes. --- src/parser.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/parser.h') diff --git a/src/parser.h b/src/parser.h index fe39b7f8..7e4bb658 100644 --- a/src/parser.h +++ b/src/parser.h @@ -54,8 +54,7 @@ private: mutable token_t lookahead; mutable bool use_lookahead; - token_t& next_token(std::istream& in, flags_t tflags) const - { + token_t& next_token(std::istream& in, flags_t tflags) const { if (use_lookahead) use_lookahead = false; else @@ -63,14 +62,11 @@ private: return lookahead; } - void push_token(const token_t& tok) const - { + void push_token(const token_t& tok) const { assert(&tok == &lookahead); use_lookahead = true; } - - void push_token() const - { + void push_token() const { use_lookahead = true; } -- cgit v1.2.3