eVC3 warning fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-01-06 12:17:37 +00:00
parent 0f769aab09
commit 61f824b819

View File

@ -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 <stdio.h>
#include <stdlib.h>
#include <ctype.h>
@ -15,6 +21,11 @@
#include <string.h>
#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"