From 4c75f84cffaf4230ea627cf995dc7db9bc9df99d Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 24 Oct 2013 10:00:32 +0000 Subject: [PATCH] Core: CParser: Fixed overflow checking in ReadDouble / Win32 typo git-svn-id: svn://ultimatepp.org/upp/trunk@6483 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/parser.cpp b/uppsrc/Core/parser.cpp index 3d1aa7d85..0f71264ad 100644 --- a/uppsrc/Core/parser.cpp +++ b/uppsrc/Core/parser.cpp @@ -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)