Skip to content

Commit 3aebf0f

Browse files
3nidsm-kuhn
authored andcommitted
default constructors
1 parent 8dce0e8 commit 3aebf0f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/app/qgsgeometryvalidationservice.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ class QgsGeometryValidationService : public QObject
5151
public:
5252
struct FeatureError
5353
{
54-
FeatureError()
55-
{}
54+
FeatureError() = default;
5655
FeatureError( QgsFeatureId fid, QgsGeometry::Error error )
5756
: featureId( fid )
5857
, error( error )
@@ -64,7 +63,6 @@ class QgsGeometryValidationService : public QObject
6463
typedef QList<FeatureError> FeatureErrors;
6564

6665
QgsGeometryValidationService( QgsProject *project );
67-
~QgsGeometryValidationService() = default;
6866

6967
void fixError( QgsGeometryCheckError *error, int method );
7068

0 commit comments

Comments
 (0)