From 61f824b8198b6c916adc25f58640a22c9d523bf0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 6 Jan 2005 12:17:37 +0000 Subject: [PATCH] eVC3 warning fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/extended.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/common/extended.c b/src/common/extended.c index 9e2b55f9d9..863e4878a2 100644 --- a/src/common/extended.c +++ b/src/common/extended.c @@ -8,6 +8,12 @@ *****************************************************************************/ +#if defined(_WIN32_WCE) && (_WIN32_WCE < 400) + // eVC3 cause warnings in its own headers: stdlib.h and winnt.h + #pragma warning (disable:4115) + #pragma warning (disable:4214) +#endif + #include #include #include @@ -15,6 +21,11 @@ #include #include "wx/defs.h" +#if defined(_WIN32_WCE) && (_WIN32_WCE < 400) + #pragma warning (default:4115) + #pragma warning (default:4214) +#endif + #if wxUSE_APPLE_IEEE #include "wx/math.h" -- 2.50.0