Fixed a compiler error with MSVC.

Maybe caused by recent changes to `expression.c`.
This commit is contained in:
kai
2012-11-18 13:37:55 +01:00
parent 60ebf5b968
commit ccde570520

View File

@@ -2528,12 +2528,7 @@ void realToMangleBuffer(OutBuffer *buf, real_t value)
* 0X1.9P+2 => 19P2
*/
// if (Port::isNan(value))
#if __APPLE__
if (__inline_isnan(value))
#else
if (isnan(value))
#endif
if (Port::isNan(value))
buf->writestring("NAN"); // no -NAN bugs
else
{