Improve comment style in token.cpp.

This commit is contained in:
Edoardo Prezioso 2012-11-19 16:30:07 +01:00
parent 382e1e95ef
commit 39bd31b44c
1 changed files with 3 additions and 2 deletions

View File

@ -667,8 +667,9 @@ bool Token::Match(const Token *tok, const char pattern[], unsigned int varid)
p += 2;
multicompare(p,tok->str() == "|",ismulticomp)
patternUnderstood = true;
// Op (%op%)
} else if (p[0] == 'p') {
}
// Op (%op%)
else if (p[0] == 'p') {
p += 2;
multicompare(p,tok->isOp(),ismulticomp);
patternUnderstood = true;