diff --git a/src/corelib/tools/qcache.h b/src/corelib/tools/qcache.h index dccef68c1b..fc5b8a0a9f 100644 --- a/src/corelib/tools/qcache.h +++ b/src/corelib/tools/qcache.h @@ -61,7 +61,6 @@ class QCache }; Node *f, *l; QHash hash; - void *unused; // ### Qt5: remove int mx, total; inline void unlink(Node &n) { @@ -123,7 +122,7 @@ private: template inline QCache::QCache(int amaxCost) - : f(0), l(0), unused(0), mx(amaxCost), total(0) {} + : f(0), l(0), mx(amaxCost), total(0) {} template inline void QCache::clear()