Move stuff

This commit is contained in:
Jean-Marc Lasgouttes 2013-02-15 16:23:51 +01:00
parent 78be5467e1
commit fd939a0426

View File

@ -258,8 +258,6 @@ public:
char getChar(); char getChar();
/// ///
void error(std::string const & msg); void error(std::string const & msg);
///
void push_back(Token const & t);
/// The previous token. /// The previous token.
Token const prev_token() const; Token const prev_token() const;
/// The current token. /// The current token.
@ -288,11 +286,13 @@ private:
/// Parses one token from \p is /// Parses one token from \p is
void tokenize_one(); void tokenize_one();
/// ///
void push_back(Token const & t);
///
int lineno_; int lineno_;
/// ///
std::vector<Token> tokens_; std::vector<Token> tokens_;
/// ///
unsigned pos_; size_t pos_;
/// ///
std::vector<unsigned> positions_; std::vector<unsigned> positions_;
/// ///