[geos-commits] r2182 - trunk/tests/unit
svn_geos at osgeo.org
svn_geos at osgeo.org
Sun Aug 31 16:28:30 EDT 2008
Author: mloskot
Date: 2008-08-31 16:28:30 -0400 (Sun, 31 Aug 2008)
New Revision: 2182
Modified:
trunk/tests/unit/geos_unit.cpp
Log:
Replaced incorrect <cmath> with <cstdlib> in geos_unit.cpp.
Modified: trunk/tests/unit/geos_unit.cpp
===================================================================
--- trunk/tests/unit/geos_unit.cpp 2008-08-31 20:23:13 UTC (rev 2181)
+++ trunk/tests/unit/geos_unit.cpp 2008-08-31 20:28:30 UTC (rev 2182)
@@ -10,7 +10,7 @@
// STL
#include <iostream>
#include <iomanip>
-#include <cmath>
+#include <cstdlib>
// GEOS
#include <geos/unload.h>
@@ -116,7 +116,7 @@
}
else
{
- return EXIT_SUCCESS;
+ return 0;
}
} // main
More information about the geos-commits
mailing list