Removed dead code created by previous commit

This commit is contained in:
Reijo Tomperi 2009-10-01 10:28:30 +03:00
parent 39092150e2
commit 37fb0d8c8a
1 changed files with 0 additions and 4 deletions

View File

@ -3519,7 +3519,6 @@ void Tokenizer::simplifyGoto()
std::list<Token*> links2; std::list<Token*> links2;
std::list<Token*> links3; std::list<Token*> links3;
int lev = 0; int lev = 0;
bool quit = false;
for (const Token *tok2 = tok; tok2; tok2 = tok2->next()) for (const Token *tok2 = tok; tok2; tok2 = tok2->next())
{ {
if (tok2->str() == "}") if (tok2->str() == "}")
@ -3584,9 +3583,6 @@ void Tokenizer::simplifyGoto()
Token::createMutualLinks(links3.back(), token); Token::createMutualLinks(links3.back(), token);
links3.pop_back(); links3.pop_back();
} }
if (quit)
break;
} }
if (!ret) if (!ret)