|
From: <sm...@us...> - 2009-02-27 21:25:40
|
Revision: 9633
http://plplot.svn.sourceforge.net/plplot/?rev=9633&view=rev
Author: smekal
Date: 2009-02-27 21:25:39 +0000 (Fri, 27 Feb 2009)
Log Message:
-----------
For Visual C++ _isnan is defined in float.h, therefore we need to include it.
Modified Paths:
--------------
trunk/include/plplot.h
Modified: trunk/include/plplot.h
===================================================================
--- trunk/include/plplot.h 2009-02-27 21:24:47 UTC (rev 9632)
+++ trunk/include/plplot.h 2009-02-27 21:25:39 UTC (rev 9633)
@@ -191,6 +191,9 @@
#if defined(_HAVE_ISNAN)
# define isnan _isnan
+# if defined(_MSC_VER)
+# include <float.h>
+# endif
#endif
#if defined(_HAVE_ISINF)
# define isinf _isinf
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|