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.
This commit is contained in:
Matthias Krüger 2015-04-07 01:25:46 +02:00
parent 1f5265c1bd
commit f714f38089
1 changed files with 1 additions and 1 deletions

View File

@ -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)