From 5b88196311bacc9be7184efd7ff8e0a56802b58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Fri, 6 Jan 2017 17:02:50 +0100 Subject: [PATCH] Add missing include utils.h to rgncmn.cpp When compiling wxWidgets without precompiled headers, src/common/rgncmn.cpp needs to include wx/utils.h, as it uses wxMin. Closes https://github.com/wxWidgets/wxWidgets/pull/386 --- src/common/rgncmn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/rgncmn.cpp b/src/common/rgncmn.cpp index 9c756c35da..8783410635 100644 --- a/src/common/rgncmn.cpp +++ b/src/common/rgncmn.cpp @@ -25,6 +25,7 @@ #include "wx/dcmemory.h" #include "wx/bitmap.h" #include "wx/image.h" + #include "wx/utils.h" #endif //WX_PRECOMP // ============================================================================