From 076e78ebd053fdb017e914631bbc5b28fc81fe6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 5 Dec 2020 12:41:01 +0100 Subject: [PATCH] Fixed Cppcheck warning (explicitConstructor) --- lib/exprengine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/exprengine.h b/lib/exprengine.h index d14c0f5ba..344bc93b1 100644 --- a/lib/exprengine.h +++ b/lib/exprengine.h @@ -315,7 +315,7 @@ namespace ExprEngine { class FunctionCallArgumentValues: public Value { public: - FunctionCallArgumentValues(const std::vector &argValues) + explicit FunctionCallArgumentValues(const std::vector &argValues) : Value("argValues", ValueType::FunctionCallArgumentValues) , argValues(argValues) {}