Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
QgsSpatialIndexKDBush: workaround false positive copyCtorPointerCopyi…
…ng warning
  • Loading branch information
rouault committed May 29, 2020
1 parent c3cdbe6 commit b376032
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/qgsspatialindexkdbush.cpp
Expand Up @@ -32,9 +32,8 @@ QgsSpatialIndexKDBush::QgsSpatialIndexKDBush( const QgsFeatureSource &source, Qg
{
}

QgsSpatialIndexKDBush::QgsSpatialIndexKDBush( const QgsSpatialIndexKDBush &other )
QgsSpatialIndexKDBush::QgsSpatialIndexKDBush( const QgsSpatialIndexKDBush &other ): d( other.d )
{
d = other.d;
d->ref.ref();
}

Expand Down

0 comments on commit b376032

Please sign in to comment.