From 6badcaced6883f281d90e340416d15b87f1c4c20 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 6 Oct 2020 08:48:53 +0200 Subject: [PATCH] Part: [skip ci] work around OCCT bug For certain OCCT versions in the file ShapeUpgrade_UnifyDomain a method of the class Precision is used but Precision.hxx is not included which can lead to a build failure. --- src/Mod/Part/App/ShapeUpgrade/UnifySameDomainPyImp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/Part/App/ShapeUpgrade/UnifySameDomainPyImp.cpp b/src/Mod/Part/App/ShapeUpgrade/UnifySameDomainPyImp.cpp index a759180596..a268fced5c 100644 --- a/src/Mod/Part/App/ShapeUpgrade/UnifySameDomainPyImp.cpp +++ b/src/Mod/Part/App/ShapeUpgrade/UnifySameDomainPyImp.cpp @@ -23,6 +23,7 @@ #include "PreCompiled.h" #ifndef _PreComp_ +# include # include #endif