Skip to content

Commit

Permalink
Silence false positive cppcheck warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 17, 2023
1 parent 8008d62 commit 1b10eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/oracle/ocispatial/qsql_ocispatial.cpp
Expand Up @@ -308,7 +308,7 @@ class QOCISpatialRowId: public QSharedData
OCIRowid *id = nullptr;

private:
QOCISpatialRowId( const QOCISpatialRowId &other ): QSharedData( other ) { Q_ASSERT( false ); }
QOCISpatialRowId( const QOCISpatialRowId &other ): QSharedData( other ), id( nullptr ) { Q_ASSERT( false ); }
QOCISpatialRowId &operator= ( const QOCISpatialRowId & ) = delete;
};

Expand Down

0 comments on commit 1b10eb9

Please sign in to comment.