[geos-commits] r3165 - trunk/include/geos/operation/sharedpaths

svn_geos at osgeo.org svn_geos at osgeo.org
Sun Dec 26 15:32:05 EST 2010


Author: strk
Date: 2010-12-26 12:32:05 -0800 (Sun, 26 Dec 2010)
New Revision: 3165

Modified:
   trunk/include/geos/operation/sharedpaths/SharedPathsOp.h
Log:
Declare SharedPathsOp class as noncopyable. Hopefully fixes VC2008 warning. [RT-SIGTA]

Modified: trunk/include/geos/operation/sharedpaths/SharedPathsOp.h
===================================================================
--- trunk/include/geos/operation/sharedpaths/SharedPathsOp.h	2010-12-24 14:27:46 UTC (rev 3164)
+++ trunk/include/geos/operation/sharedpaths/SharedPathsOp.h	2010-12-26 20:32:05 UTC (rev 3165)
@@ -149,6 +149,10 @@
   const geom::Geometry& _g2;
   const geom::GeometryFactory& _gf;
 
+  // Declare type as noncopyable
+  SharedPathsOp(const SharedPathsOp& other);
+  SharedPathsOp& operator=(const SharedPathsOp& rhs);
+
 };
 
 } // namespace geos.operation.sharedpaths



More information about the geos-commits mailing list