From e20cc5a017bfa5819250cf2e06176e2071b1cf3d Mon Sep 17 00:00:00 2001 From: Uwe Date: Mon, 4 Jul 2022 02:14:27 +0200 Subject: [PATCH] [Part] fix MSVC compiler warning about redefinition of content of basic.h, see https://forum.freecadweb.org/viewtopic.php?f=10&t=69988 --- src/Mod/Part/Gui/SectionCutting.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Mod/Part/Gui/SectionCutting.cpp b/src/Mod/Part/Gui/SectionCutting.cpp index 798d982b35..96a2ddd9e4 100644 --- a/src/Mod/Part/Gui/SectionCutting.cpp +++ b/src/Mod/Part/Gui/SectionCutting.cpp @@ -21,7 +21,13 @@ ***************************************************************************/ #include "PreCompiled.h" + #ifndef _PreComp_ + +// to avoid compiler warnings of redefining contents of basic.h +// later by #include +# include + # include # include # include