Skip to content

Commit

Permalink
default constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored and m-kuhn committed Oct 15, 2018
1 parent 8dce0e8 commit 3aebf0f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/qgsgeometryvalidationservice.h
Expand Up @@ -51,8 +51,7 @@ class QgsGeometryValidationService : public QObject
public:
struct FeatureError
{
FeatureError()
{}
FeatureError() = default;
FeatureError( QgsFeatureId fid, QgsGeometry::Error error )
: featureId( fid )
, error( error )
Expand All @@ -64,7 +63,6 @@ class QgsGeometryValidationService : public QObject
typedef QList<FeatureError> FeatureErrors;

QgsGeometryValidationService( QgsProject *project );
~QgsGeometryValidationService() = default;

void fixError( QgsGeometryCheckError *error, int method );

Expand Down

0 comments on commit 3aebf0f

Please sign in to comment.