[svn:parrot] r49431 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Oct 3 16:17:39 UTC 2010


Author: mikehh
Date: Sun Oct  3 16:17:38 2010
New Revision: 49431
URL: https://trac.parrot.org/parrot/changeset/49431

Log:
change #ifdef to #ifndef (comes into play only if not defined) - this should fix the windows build

Modified:
   trunk/src/datatypes.c

Modified: trunk/src/datatypes.c
==============================================================================
--- trunk/src/datatypes.c	Sun Oct  3 05:56:27 2010	(r49430)
+++ trunk/src/datatypes.c	Sun Oct  3 16:17:38 2010	(r49431)
@@ -93,7 +93,7 @@
 
 */
 
-#ifdef PARROT_HAS_INF_NAN
+#ifndef PARROT_HAS_INF_NAN
 
 PARROT_EXPORT
 FLOATVAL


More information about the parrot-commits mailing list