Fix compiler warning: don't mix signed and unsigned int in comparison

Change-Id: Ib6609d70900a0c26dd88bbfd16e886773ae67420
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Volker Hilsheimer 2021-02-11 16:23:24 +01:00
parent 784276cc72
commit d40ba4adee

View File

@ -640,7 +640,7 @@ void tst_QGlyphRun::defaultIgnorables()
QList<QGlyphRun> runs = layout.glyphRuns();
QCOMPARE(runs.size(), 1);
QCOMPARE(runs.at(0).glyphIndexes().size(), 1);
QCOMPARE(runs.at(0).glyphIndexes()[0], 0);
QCOMPARE(runs.at(0).glyphIndexes()[0], uint(0));
}
#endif // QT_NO_RAWFONT