From 677257f5690a1b39cdf6f352e77509e451a82b93 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Mon, 30 Sep 2013 10:43:21 -0700 Subject: [PATCH] Fixed clang warning: lib/checkother.h:360:80: warning: implicit conversion turns string literal into. --- lib/checkother.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.h b/lib/checkother.h index 5d12a7466..e7d00f357 100644 --- a/lib/checkother.h +++ b/lib/checkother.h @@ -357,7 +357,7 @@ private: c.redundantAssignmentError(0, 0, "var", false); // style/warning - c.checkComparisonFunctionIsAlwaysTrueOrFalseError(0,"isless","varName","false"); + c.checkComparisonFunctionIsAlwaysTrueOrFalseError(0,"isless","varName",false); c.checkCastIntToCharAndBackError(0,"func_name"); c.oppositeInnerConditionError(0); c.cstyleCastError(0);