From 5f4c83a25e7bb3d71ad7a54d82fad18cff01908e Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Sat, 25 Jul 2009 18:14:38 +0700 Subject: [PATCH] src/checkother.cpp: simplify condition a bit. No functional change. --- src/checkother.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/checkother.cpp b/src/checkother.cpp index d2bdfd830..6ecd12ba8 100644 --- a/src/checkother.cpp +++ b/src/checkother.cpp @@ -92,8 +92,7 @@ void CheckOther::warningRedundantCode() * **/ - if (Token::simpleMatch(tok2, "this .") || - Token::Match(tok2, "%var% ::")) + if (Token::Match(tok2, "%var% .|::")) { tok2 = tok2->tokAt(2); }