The usual astyle run

This commit is contained in:
Thomas Jarosch 2011-12-03 17:01:56 +01:00
parent 50dfdf7c2e
commit fcb6759f43
1 changed files with 2 additions and 4 deletions

View File

@ -2670,13 +2670,11 @@ static void removeTemplates(Token *tok)
tok2 = tok2->link();
if (!tok2)
break;
}
else if (tok2->str() == ";") {
} else if (tok2->str() == ";") {
Token::eraseTokens(tok, tok2->next());
tok->str(";");
break;
}
else if (Token::Match(tok2, ">|>> class %var% [,)]")) {
} else if (Token::Match(tok2, ">|>> class %var% [,)]")) {
Token::eraseTokens(tok,tok2->next());
tok->deleteThis();
break;