Merge pull request #605 from simartin/no_space_in_decl
Removed useless space in the declaration for Tokenizer::Simplifyfunctionpointers
This commit is contained in:
commit
9c6ce2b06b
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue