From 8271d6374435053c7cae8d5d8ec035dda46268a4 Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Wed, 24 Oct 2012 14:07:26 +0200 Subject: [PATCH] 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. --- lib/tokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tokenize.cpp b/lib/tokenize.cpp index dd26b6475..ee76f7e97 100644 --- a/lib/tokenize.cpp +++ b/lib/tokenize.cpp @@ -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: