Skip to content
Commit d6309eb6 authored by Vlad Zahorodnii's avatar Vlad Zahorodnii
Browse files

Fix -Wformat

QVector::count()'s return type is qsizetype. On a 64 bit platform, it's
equivalent to qint64, so "%d" does not suffice.

There are two ways to fix it: use PRIdQSIZETYPE or switch to the stream
operator. Since the warning format is not complex, this takes the latter
approach.
parent 328cf606
Pipeline #354921 failed with stage
in 11 minutes and 2 seconds
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment