mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-11 22:03:09 -06:00
Core: CParser MINGW fix
git-svn-id: svn://ultimatepp.org/upp/trunk@6737 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
de51da7946
commit
d092b8b514
1 changed files with 7 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue