Core: CParser: Fixed overflow checking in ReadDouble / Win32 typo

git-svn-id: svn://ultimatepp.org/upp/trunk@6483 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-10-24 10:00:32 +00:00
parent 843df57738
commit 4c75f84cff

View file

@ -236,7 +236,7 @@ uint64 CParser::ReadNumber64(int base) throw(Error)
double CParser::ReadDouble() throw(Error)
{
LTIMING("ReadDouble");
#ifdef PLARFORM_WIN32
#ifdef PLATFORM_WIN32
_clearfp();
#endif
#if defined(PLATFORM_POSIX) && defined(FE_OVERFLOW)