From f714f38089497924a7c664986d1ee336c5eafa44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Tue, 7 Apr 2015 01:25:46 +0200 Subject: [PATCH] reduce: fix cppcheck style remark about CppcheckExecutor not being explicit. [tools/reduce.cpp:47]: (style) Class 'CppcheckExecutor' has a constructor with 1 argument that is not explicit. --- tools/reduce.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/reduce.cpp b/tools/reduce.cpp index fb5e19470..e2b0dc687 100644 --- a/tools/reduce.cpp +++ b/tools/reduce.cpp @@ -44,7 +44,7 @@ private: std::time_t stopTime; public: - CppcheckExecutor(const ReduceSettings & settings) + explicit CppcheckExecutor(const ReduceSettings & settings) : ErrorLogger() , cppcheck(*this,false) , foundLine(false)