[geos-commits] r3549 - branches/3.3/include/geos/geom
svn_geos at osgeo.org
svn_geos at osgeo.org
Thu Dec 15 05:58:11 EST 2011
Author: strk
Date: 2011-12-15 02:58:11 -0800 (Thu, 15 Dec 2011)
New Revision: 3549
Modified:
branches/3.3/include/geos/geom/BinaryOp.h
Log:
Fix build with CBR_BEFORE_SNAPPING undefined
Modified: branches/3.3/include/geos/geom/BinaryOp.h
===================================================================
--- branches/3.3/include/geos/geom/BinaryOp.h 2011-12-15 08:59:44 UTC (rev 3548)
+++ branches/3.3/include/geos/geom/BinaryOp.h 2011-12-15 10:58:11 UTC (rev 3549)
@@ -195,8 +195,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