https://bugs.kde.org/show_bug.cgi?id=359000
--- Comment #3 from Nyall Dawson <nyall.daw...@gmail.com> --- Here's a simple test case: #include <QVariant> #include <QIcon> int main(int, char **) { QString string; //no warning QList<int> list; //no warning QVariant var; //no warning QIcon i; //no warning int num; //warning } building this with clang 3.7 warns only about the unused int variable, not the unused QString/QList/QVariant etc. -- You are receiving this mail because: You are watching all bug changes.