Fix conversion warning in tst_qresultstore

Changed type of `id`, `int` -> `size_t`, to match `liveCount`, in
`CountedObject` struct.

Fixes: QTBUG-122301
Change-Id: I85513d5ff6a4f0c3fb53f77e55c43b1284d1b1a8
Reviewed-by: Matthias Rauter <matthias.rauter@qt.io>
This commit is contained in:
Isak Fyksen 2024-02-27 14:56:42 +01:00
parent ab0158474b
commit 2de8ad284e

View File

@ -549,7 +549,7 @@ struct CountedObject
const size_t previousLiveCount;
};
int id = 0;
size_t id = 0;
static size_t liveCount;
};