From 361fa782fb2151c1303e847009a30441758444d6 Mon Sep 17 00:00:00 2001 From: mpv Date: Tue, 21 Nov 2017 13:42:51 +0300 Subject: [PATCH] Fix for the issue #2283: Mismatched free() / delete / delete[] --- src/GeomAPI/GeomAPI_Trsf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GeomAPI/GeomAPI_Trsf.cpp b/src/GeomAPI/GeomAPI_Trsf.cpp index 01a0e3f77..1262d4717 100644 --- a/src/GeomAPI/GeomAPI_Trsf.cpp +++ b/src/GeomAPI/GeomAPI_Trsf.cpp @@ -40,7 +40,7 @@ GeomAPI_Trsf::GeomAPI_Trsf() //================================================================================================= GeomAPI_Trsf::GeomAPI_Trsf(void* theTrsf) -: GeomAPI_Interface(theTrsf) +: GeomAPI_Interface((gp_Trsf*)theTrsf) { } -- 2.39.2