Skip to content

Commit 3f14ea8

Browse files
committed
Avoid warnings
1 parent a941f4a commit 3f14ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsexpression.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class CORE_EXPORT QgsExpression
227227

228228
virtual QStringList referencedColumns() const = 0;
229229
virtual bool needsGeometry() const = 0;
230-
virtual bool toOGCFilter( QDomDocument& doc, QDomElement& parent ) const { return false; }
230+
virtual bool toOGCFilter( QDomDocument& doc, QDomElement& parent ) const { Q_UNUSED( doc ); Q_UNUSED( parent ); return false; }
231231
};
232232

233233
class NodeList

0 commit comments

Comments
 (0)