diff --git a/include/wx/math.h b/include/wx/math.h index b2eea32c2a..138f28e01d 100644 --- a/include/wx/math.h +++ b/include/wx/math.h @@ -53,13 +53,13 @@ #ifdef __cplusplus +#include + /* Things are simple with C++11: we have everything we need in std. Eventually we will only have this section and not the legacy stuff below. */ #if __cplusplus >= 201103 - #include - #define wxFinite(x) std::isfinite(x) #define wxIsNaN(x) std::isnan(x) #else /* C++98 */