Flipped shift operator direction to match spirit

This commit is contained in:
Jonathan Turner
2009-06-01 19:18:55 +00:00
parent f0088d8ade
commit fc3b9de2d2
3 changed files with 11 additions and 11 deletions

View File

@@ -67,7 +67,7 @@ std::vector<TokenPtr> Lexer::lex(const std::string &input, const char *filename)
}
if ((!found_eoc) && (input_iter != input_end)) {
++input_iter;
current_col += 1;
++current_col;
}
}