Forgot to fix another clang analyzer message.
I don't understand why here there is a loop 'break' after a token stepping forward and a bool assignment.
This commit is contained in:
parent
99777671e5
commit
8271d63744
|
@ -1107,7 +1107,7 @@ void Tokenizer::simplifyTypedef()
|
|||
tok2->next()->str() == "operator")) {
|
||||
simplifyType = false;
|
||||
tok2 = tok2->next();
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
|
||||
// There are 2 categories of typedef substitutions:
|
||||
|
|
Loading…
Reference in New Issue