[geos-commits] r3548 - trunk/include/geos/geom

svn_geos at osgeo.org svn_geos at osgeo.org
Thu Dec 15 03:59:44 EST 2011


Author: strk
Date: 2011-12-15 00:59:44 -0800 (Thu, 15 Dec 2011)
New Revision: 3548

Modified:
   trunk/include/geos/geom/BinaryOp.h
Log:
Fix build with CBR_BEFORE_SNAPPING undefined

Modified: trunk/include/geos/geom/BinaryOp.h
===================================================================
--- trunk/include/geos/geom/BinaryOp.h	2011-12-12 15:11:27 UTC (rev 3547)
+++ trunk/include/geos/geom/BinaryOp.h	2011-12-15 08:59:44 UTC (rev 3548)
@@ -194,8 +194,8 @@
 	const Geometry& operand0 = *rG0;
 	const Geometry& operand1 = *rG1;
 #else // don't CBR before snapping
-	const Geometry& operand0 = *g0
-	const Geometry& operand1 = *g1
+	const Geometry& operand0 = *g0;
+	const Geometry& operand1 = *g1;
 #endif
 
 



More information about the geos-commits mailing list