From a2c55fa834b02dfefcb4290acda701fce814d235 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 21 Jul 2020 17:11:14 +0200 Subject: [PATCH] Include wx/math.h in the file using wxRound() Although it seems to be already included from some other header implicitly, prefer to also include it explicitly to avoid any breakage later. --- src/osx/window_osx.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osx/window_osx.cpp b/src/osx/window_osx.cpp index 5520e1ba5f..61bf54cbea 100644 --- a/src/osx/window_osx.cpp +++ b/src/osx/window_osx.cpp @@ -14,6 +14,7 @@ #ifndef WX_PRECOMP #include "wx/log.h" + #include "wx/math.h" #include "wx/app.h" #include "wx/utils.h" #include "wx/panel.h"