From b52f8d1e1d70b8e65c05d20cc5517b13fbadf5e9 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 17 Feb 2019 11:49:51 +0100 Subject: [PATCH] PVS: V730 Not all members of a class are initialized inside the constructor --- src/App/Expression.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Expression.h b/src/App/Expression.h index 410f4eb38e..e21f7415cc 100644 --- a/src/App/Expression.h +++ b/src/App/Expression.h @@ -503,7 +503,7 @@ public: double fvalue; struct { std::string name; - double fvalue; + double fvalue = 0; } constant; std::vector arguments; std::vector list;