astyle fix

This commit is contained in:
Reijo Tomperi 2009-02-14 18:40:04 +00:00
parent 4a1488b1a9
commit 997cb071b7
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ void Tokenizer::tokenize(std::istream &code, const char FileName[])
CurrentToken.clear();
CurrentToken += ch;
// Add "++", "--" or ">>" token
if ((ch=='+' || ch=='-' || ch=='>') && (code.peek() == ch))
if ((ch == '+' || ch == '-' || ch == '>') && (code.peek() == ch))
CurrentToken += (char)code.get();
addtoken(CurrentToken.c_str(), lineno, FileIndex);
CurrentToken.clear();