From ae7a7d287eb008ec6494e46d70bf7edb38ea7805 Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Thu, 15 Oct 2015 18:03:27 +0300 Subject: [PATCH] Explicit continue instead of fall through with a check --- lib/tokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tokenize.cpp b/lib/tokenize.cpp index f5e4617dc..50d1598e6 100644 --- a/lib/tokenize.cpp +++ b/lib/tokenize.cpp @@ -3200,7 +3200,7 @@ bool Tokenizer::simplifySizeof() tok2 = tok2->linkAt(1); } if (Token::simpleMatch(tok2, "] [")) - sz = 0; + continue; } } else if (nametok->strAt(1) == "[" && nametok->isStandardType()) { sz = sizeOfType(nametok);