Merge pull request #605 from simartin/no_space_in_decl

Removed useless space in the declaration for Tokenizer::Simplifyfunctionpointers
This commit is contained in:
orbitcowboy 2015-05-30 21:22:14 +02:00
commit 9c6ce2b06b
1 changed files with 1 additions and 1 deletions

View File

@ -5241,7 +5241,7 @@ void Tokenizer::simplifyPointerToStandardType()
} }
} }
void Tokenizer:: simplifyFunctionPointers() void Tokenizer::simplifyFunctionPointers()
{ {
for (Token *tok = list.front(); tok; tok = tok->next()) { for (Token *tok = list.front(); tok; tok = tok->next()) {
// #2873 - do not simplify function pointer usage here: // #2873 - do not simplify function pointer usage here: