Fix compiler warning from unused private field in QSequentialIterable

Change-Id: I9c330b4f99f77404eacda2506d264f917f9e1161
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
bb10
Volker Hilsheimer 2020-09-04 10:23:48 +02:00
parent c91d1fdc10
commit c549c35408
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ public:
: m_iterable(p)
, m_metaSequence(QMetaSequence::fromContainer<T>())
{
Q_UNUSED(m_revision);
}
QSequentialIterable() = default;