From 63e08689c1808695898cf752c0f4403ee4c24be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 2 Oct 2020 19:35:24 +0200 Subject: [PATCH] Fix Cppcheck warning --- lib/suppressions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/suppressions.h b/lib/suppressions.h index 21a401f22..5ea1dd568 100644 --- a/lib/suppressions.h +++ b/lib/suppressions.h @@ -49,7 +49,7 @@ public: }; struct CPPCHECKLIB Suppression { - Suppression() : lineNumber(NO_LINE), hash(0), matched(false) {} + Suppression() : lineNumber(NO_LINE), hash(0), thisAndNextLine(false), matched(false) {} Suppression(const Suppression &other) { *this = other; }