[geos-commits] r2160 - trunk/source/headers/geos

svn_geos at osgeo.org svn_geos at osgeo.org
Mon Aug 18 12:27:58 EDT 2008


Author: mloskot
Date: 2008-08-18 12:27:58 -0400 (Mon, 18 Aug 2008)
New Revision: 2160

Modified:
   trunk/source/headers/geos/util.h
Log:
Fixed UNREFERENCED_PARAMETER macro.

Modified: trunk/source/headers/geos/util.h
===================================================================
--- trunk/source/headers/geos/util.h	2008-08-18 16:27:02 UTC (rev 2159)
+++ trunk/source/headers/geos/util.h	2008-08-18 16:27:58 UTC (rev 2160)
@@ -37,7 +37,7 @@
 // 
 
 #ifndef UNREFERENCED_PARAMETER 
-#define UNREFERENCED_PARAMETER(p) (p)
+#define UNREFERENCED_PARAMETER(p) ((void)p)
 #endif 
 
 #endif // GEOS_UTIL_H



More information about the geos-commits mailing list