[geos-commits] r2184 - trunk/tests/unit/algorithm/CGAlgorithms

svn_geos at osgeo.org svn_geos at osgeo.org
Tue Sep 16 16:13:55 EDT 2008


Author: mloskot
Date: 2008-09-16 16:13:55 -0400 (Tue, 16 Sep 2008)
New Revision: 2184

Modified:
   trunk/tests/unit/algorithm/CGAlgorithms/isPointInRingTest.cpp
Log:
Include missing <cassert> in isPointInRingTest.cpp

Modified: trunk/tests/unit/algorithm/CGAlgorithms/isPointInRingTest.cpp
===================================================================
--- trunk/tests/unit/algorithm/CGAlgorithms/isPointInRingTest.cpp	2008-09-16 20:05:55 UTC (rev 2183)
+++ trunk/tests/unit/algorithm/CGAlgorithms/isPointInRingTest.cpp	2008-09-16 20:13:55 UTC (rev 2184)
@@ -2,10 +2,6 @@
 // 
 // Test Suite for CGAlgorithms::isPointInRing() function
 
-// TUT
-#include <tut.h>
-// STL
-#include <string>
 // GEOS
 #include <geos/algorithm/CGAlgorithms.h>
 #include <geos/geom/Polygon.h>
@@ -13,6 +9,11 @@
 #include <geos/geom/CoordinateSequence.h>
 #include <geos/geom/Coordinate.h>
 #include <geos/io/WKTReader.h>
+// TUT
+#include <tut.h>
+// STL
+#include <string>
+#include <cassert>
 
 using namespace geos::algorithm;
 



More information about the geos-commits mailing list