From ebecdfa8d0d5a5accf2c428a1756bf44d2096f30 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 14 Sep 2020 19:30:21 +0200 Subject: [PATCH] Part: [skip ci] Coverity: Uninitialized scalar field --- src/Mod/Part/App/GeometryDefaultExtension.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/App/GeometryDefaultExtension.h b/src/Mod/Part/App/GeometryDefaultExtension.h index 45537a8e55..629e133f2b 100644 --- a/src/Mod/Part/App/GeometryDefaultExtension.h +++ b/src/Mod/Part/App/GeometryDefaultExtension.h @@ -87,7 +87,7 @@ namespace Part { // 6. Register your type and corresponding python type in AppPart.cpp template - inline GeometryDefaultExtension::GeometryDefaultExtension(){ } + inline GeometryDefaultExtension::GeometryDefaultExtension():value{}{} // Specialised constructors go here so that specialisation is before the template instantiation // Specialised default constructors are inline, because a full specialisation otherwise shall go in the cpp file, but there it would be after the template instantiation.