From e68bd5a319d68eccfd759df29d52818dedbb4116 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Mon, 22 Aug 2016 21:03:38 +0200 Subject: [PATCH] Fix compilation breakage due to missing FLT_MAX, FLT_MIN Include header file unconditionally. --- src/msw/graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/graphics.cpp b/src/msw/graphics.cpp index 874cf41a02..927eda7d4c 100644 --- a/src/msw/graphics.cpp +++ b/src/msw/graphics.cpp @@ -35,7 +35,6 @@ #include "wx/dcclient.h" #include "wx/dcmemory.h" #include "wx/dcprint.h" - #include // for FLT_MAX, FLT_MIN #endif #include "wx/stack.h" @@ -54,6 +53,7 @@ #if wxUSE_COMMON_DIALOGS #include #endif +#include // for FLT_MAX, FLT_MIN // Define REAL_MAX, REAL_MIN // if it isn't done in GDI+ header(s).