From 8e888a0dfb12a2e734b69d29f11f529d9984fb73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 1 Aug 2011 07:48:18 +0200 Subject: [PATCH] astyle formatting --- lib/checkassignif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkassignif.cpp b/lib/checkassignif.cpp index e48b4fc7a..06b87c302 100644 --- a/lib/checkassignif.cpp +++ b/lib/checkassignif.cpp @@ -128,7 +128,7 @@ void CheckAssignIf::comparisonError(const Token *tok, bool result) errmsg += "'(x & 6 != 1)'. The result of 'x & 6' can't be 1 so the result of the comparison is always true"; else errmsg += "'(x & 6 == 1)'. The result of 'x & 6' can't be 1 so the result of the comparison is always false"; - + reportError(tok, Severity::style, "comparisonError", errmsg); }