From kde-commits Tue Jan 03 16:09:04 2012 From: Raphael Kubo da Costa Date: Tue, 03 Jan 2012 16:09:04 +0000 To: kde-commits Subject: KDE/kdemultimedia/juk Message-Id: <20120103160904.563D6AC7DB () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=132560709612685 SVN commit 1271272 by rkcosta: Fix build with clang. The call to QSet::contains() failed due to [1]. CCMAIL: mpyne@kde.org [1] http://clang.llvm.org/compatibility.html#dep_lookup_bases M +1 -1 stringhash.h --- trunk/KDE/kdemultimedia/juk/stringhash.h #1271271:1271272 @@ -33,7 +33,7 @@ */ inline bool insert(const T &value) { - if(contains(value)) + if(this->contains(value)) return true; QSet::insert(value); return false;