From 03f6a19dbdf1173e0eaab44f6a28e2fd47126ef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 27 Aug 2012 15:52:03 +0200 Subject: [PATCH] astyle formatting --- lib/checkstl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkstl.cpp b/lib/checkstl.cpp index a0a4fb39b..f6931ca20 100644 --- a/lib/checkstl.cpp +++ b/lib/checkstl.cpp @@ -1340,7 +1340,7 @@ void CheckStl::uselessCalls() uselessCallsSubstrError(tok, true); } else if (Token::Match(tok, "[{}:;] %var% . empty ( ) ;") && style) uselessCallsEmptyError(tok->next()); - else if (Token::Match(tok, "[{};] std :: remove (") && tok->tokAt(5)->nextArgument()) + else if (Token::Match(tok, "[{};] std :: remove (") && tok->tokAt(5)->nextArgument()) uselessCallsRemoveError(tok->next()); } }