summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2017-04-27 14:03:48 +0100
committerSean Harmer <sean.harmer@kdab.com>2017-04-27 17:31:45 +0000
commit873caffc95b6e279d68851cc0a8ed738980ebd0c (patch)
treefe2d11b76296fa9204599707914f047e93c125d2 /src
parente138c89c5f75e62c873dfe77e1e4c2e39b7b5f6c (diff)
Fix -Werror=unused-parameter issue
Change-Id: Ibc77241e8d369224eda790b8dcfd900f330bed37 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src')
-rw-r--r--src/extras/text/qdistancefieldglyphcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extras/text/qdistancefieldglyphcache.cpp b/src/extras/text/qdistancefieldglyphcache.cpp
index aacccc7dc..9c997013e 100644
--- a/src/extras/text/qdistancefieldglyphcache.cpp
+++ b/src/extras/text/qdistancefieldglyphcache.cpp
@@ -61,7 +61,7 @@ namespace Qt3DExtras {
class StoredGlyph {
public:
StoredGlyph() = default;
- StoredGlyph(const StoredGlyph &other) = default;
+ StoredGlyph(const StoredGlyph &) = default;
StoredGlyph(const QRawFont &font, quint32 glyph, bool doubleResolution);
int refCount() const { return m_ref; }