aboutsummaryrefslogtreecommitdiffstats
path: root/tests/isempty-vs-count/main.cpp
blob: 673fa401fe7506398c5589e8e9da8f7b11a96df9 (plain)
1
2
3
4
5
6
7
8
9
10
#include <QtCore/QList>

void test()
{
    QList<int> list;
    if (list.count()) {}   // Warning
    bool b1 = list.count(); // Warning
    bool b2 = list.size(); // Warning
    if (list.indexOf(1)) {} // OK
}