Core: CParser MINGW fix

git-svn-id: svn://ultimatepp.org/upp/trunk@6737 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-01-08 19:26:00 +00:00
parent de51da7946
commit d092b8b514

View file

@ -234,8 +234,13 @@ uint64 CParser::ReadNumber64(int base) throw(Error)
}
#if defined(COMPILER_MINGW)
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _clearfp (void);
#define SW_OVERFLOW 0x00000004
extern "C" {
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _clearfp(void);
}
#define SW_OVERFLOW 0x00000004
#endif
double CParser::ReadDouble() throw(Error)