Skip to content

Commit

Permalink
Fixes here and there and everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Nov 5, 2019
1 parent da207c9 commit 42e9b13
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/core/qgsfield.cpp
Expand Up @@ -57,6 +57,8 @@ QgsField::QgsField( const QgsField &other ) //NOLINT

}

QgsField::~QgsField() = default;

/***************************************************************************
* This class is considered CRITICAL and any change MUST be accompanied with
* full unit tests in testqgsfield.cpp.
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsfield.h
Expand Up @@ -96,7 +96,7 @@ class CORE_EXPORT QgsField
*/
QgsField &operator =( const QgsField &other ) SIP_SKIP;

virtual ~QgsField() = default;
virtual ~QgsField();

bool operator==( const QgsField &other ) const;
bool operator!=( const QgsField &other ) const;
Expand Down
2 changes: 2 additions & 0 deletions src/core/qgsproperty.cpp
Expand Up @@ -201,6 +201,8 @@ QgsProperty::QgsProperty()
d = new QgsPropertyPrivate();
}

QgsProperty::~QgsProperty() = default;

QgsProperty QgsProperty::fromExpression( const QString &expression, bool isActive )
{
QgsProperty p;
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsproperty.h
Expand Up @@ -244,7 +244,7 @@ class CORE_EXPORT QgsProperty
*/
QgsProperty();

virtual ~QgsProperty() = default;
virtual ~QgsProperty();

/**
* Returns a new ExpressionBasedProperty created from the specified expression.
Expand Down

0 comments on commit 42e9b13

Please sign in to comment.