File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ class GEOSInit
97
97
98
98
private:
99
99
100
- GEOSInit ( const GEOSInit &rh );
101
- GEOSInit &operator =( const GEOSInit &rh );
100
+ GEOSInit ( const GEOSInit &rh ) = delete ;
101
+ GEOSInit &operator =( const GEOSInit &rh ) = delete ;
102
102
};
103
103
104
104
static GEOSInit geosinit;
@@ -127,8 +127,8 @@ class GEOSGeomScopedPtr
127
127
GEOSGeometry *mGeom = nullptr ;
128
128
129
129
private:
130
- GEOSGeomScopedPtr ( const GEOSGeomScopedPtr &rh );
131
- GEOSGeomScopedPtr &operator =( const GEOSGeomScopedPtr &rh );
130
+ GEOSGeomScopedPtr ( const GEOSGeomScopedPtr &rh ) = delete ;
131
+ GEOSGeomScopedPtr &operator =( const GEOSGeomScopedPtr &rh ) = delete ;
132
132
};
133
133
134
134
QgsGeos::QgsGeos ( const QgsAbstractGeometry *geometry, double precision )
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ class QgsSpatialIndexData : public QSharedData
226
226
227
227
private:
228
228
229
- QgsSpatialIndexData &operator =( const QgsSpatialIndexData &rh );
229
+ QgsSpatialIndexData &operator =( const QgsSpatialIndexData &rh ) = delete ;
230
230
};
231
231
232
232
// -------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments