From 71cb8e9f644df50d2a4022debc394291b14969ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 3 May 2015 15:02:34 +0200 Subject: [PATCH] Fixed --errorlist output for new checker stringLiteralWrite --- lib/checkstring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/checkstring.h b/lib/checkstring.h index eab7e20fd..9a3596ca2 100644 --- a/lib/checkstring.h +++ b/lib/checkstring.h @@ -94,6 +94,7 @@ private: void getErrorMessages(ErrorLogger *errorLogger, const Settings *settings) const { CheckString c(0, settings, errorLogger); + c.stringLiteralWriteError(0); c.sprintfOverlappingDataError(0, "varname"); c.strPlusCharError(0); c.incorrectStringCompareError(0, "substr", "\"Hello World\"");