From c3b88f3b5af2b4dafe9560b50f270bc2b9555168 Mon Sep 17 00:00:00 2001 From: MisterMaker Date: Mon, 12 Aug 2024 01:38:36 +0200 Subject: [PATCH] Update FeatureLoft.cpp (#15851) caused compile issues on MSVC with PCH. See https://forum.freecad.org/viewtopic.php?t=89702 https://github.com/FreeCAD/FreeCAD/commit/3976595dc34b6203fe0e518cda54d0c24610379a --- src/Mod/PartDesign/App/FeatureLoft.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/PartDesign/App/FeatureLoft.cpp b/src/Mod/PartDesign/App/FeatureLoft.cpp index e15eeb4988..c9ea6b3184 100644 --- a/src/Mod/PartDesign/App/FeatureLoft.cpp +++ b/src/Mod/PartDesign/App/FeatureLoft.cpp @@ -20,7 +20,7 @@ * * ***************************************************************************/ -#include "FeatureLoft.h" + // NOLINTNEXTLINE(CppUnusedIncludeDirective) #include "PreCompiled.h" // NOLINT(misc-include-cleaner) @@ -40,7 +40,7 @@ #include "Mod/Part/App/TopoShapeOpCode.h" - +#include "FeatureLoft.h" using namespace PartDesign; PROPERTY_SOURCE(PartDesign::Loft, PartDesign::ProfileBased)