From 01f61c5908aea7657044fa2d8fdb69388f410c15 Mon Sep 17 00:00:00 2001 From: Uwe Date: Mon, 12 Dec 2022 00:34:59 +0100 Subject: [PATCH] [Mesh] Gui: fix compilation on Windows - I accidentally removed a necessary Windows header in commit 65f662ea --- src/Mod/Mesh/Gui/PreCompiled.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Mod/Mesh/Gui/PreCompiled.h b/src/Mod/Mesh/Gui/PreCompiled.h index fd81e3ec9e..256de1dc58 100644 --- a/src/Mod/Mesh/Gui/PreCompiled.h +++ b/src/Mod/Mesh/Gui/PreCompiled.h @@ -63,6 +63,11 @@ # include #endif +#elif defined(FC_OS_WIN32) +#ifndef NOMINMAX +# define NOMINMAX +#endif +#include #endif //_PreComp_ #endif // MESHGUI_PRECOMPILED_H