From 39c03863b57598ca88451d5b2c6c4447890f0c11 Mon Sep 17 00:00:00 2001 From: Uwe Date: Mon, 21 Feb 2022 16:52:41 +0100 Subject: [PATCH] [Part] compile fix for precompiled header For an unknown reason BRepFill_Generator.hxx must be load explicitly for precompiled headers. --- src/Mod/Part/App/AppPartPy.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Mod/Part/App/AppPartPy.cpp b/src/Mod/Part/App/AppPartPy.cpp index 266603c2f3..0c001a9451 100644 --- a/src/Mod/Part/App/AppPartPy.cpp +++ b/src/Mod/Part/App/AppPartPy.cpp @@ -71,6 +71,8 @@ # include #endif +#include + #include #include #include @@ -81,8 +83,6 @@ #include #include -#include "GeometryCurvePy.h" -#include "GeometryPy.h" #include "BSplineSurfacePy.h" #include "edgecluster.h" #include "FaceMaker.h" @@ -91,6 +91,8 @@ #include "FeaturePartImportStep.h" #include "FeaturePartImportIges.h" #include "FeaturePartImportBrep.h" +#include "GeometryCurvePy.h" +#include "GeometryPy.h" #include "ImportIges.h" #include "ImportStep.h" #include "modelRefine.h"