From 5a91ceaf33eaa5390fd94db01c6b016640b48e7f Mon Sep 17 00:00:00 2001 From: Max Brazhnikov Date: Thu, 14 Jun 2012 16:42:04 +0000 Subject: KDE/FreeBSD team presents KDE SC 4.8.4, probably the last release in 4.8.x series. Official announcement: http://kde.org/announcements/announce-4.8.4.php --- x11/kdelibs4/files/patch-kjs__wtf__HashSet.h | 42 ---------------------------- 1 file changed, 42 deletions(-) delete mode 100644 x11/kdelibs4/files/patch-kjs__wtf__HashSet.h (limited to 'x11/kdelibs4/files/patch-kjs__wtf__HashSet.h') diff --git a/x11/kdelibs4/files/patch-kjs__wtf__HashSet.h b/x11/kdelibs4/files/patch-kjs__wtf__HashSet.h deleted file mode 100644 index 11ea13cf41d6..000000000000 --- a/x11/kdelibs4/files/patch-kjs__wtf__HashSet.h +++ /dev/null @@ -1,42 +0,0 @@ -commit a8ae408985e3eadee91ce95b584e768a205fec02 -Author: Raphael Kubo da Costa -Date: Sun May 27 17:10:27 2012 -0300 - - Fix the build with clang 3.1 (and possibly ICC). - - Use the `template' keyword to disambiguate the calls here. Similar to - what was done in WebKit's WTF revision 37062. - - Reviewed-by: SadEagle on IRC - -diff --git a/kjs/wtf/HashSet.h b/kjs/wtf/HashSet.h -index a1519d5..88ddf79 100644 ---- ./kjs/wtf/HashSet.h -+++ ./kjs/wtf/HashSet.h -@@ -181,7 +181,7 @@ namespace WTF { - inline HashSet::find(const T& value) - { - typedef HashSetTranslatorAdapter Adapter; -- return m_impl.find(value); -+ return m_impl.template find(value); - } - - template -@@ -190,7 +190,7 @@ namespace WTF { - inline HashSet::find(const T& value) const - { - typedef HashSetTranslatorAdapter Adapter; -- return m_impl.find(value); -+ return m_impl.template find(value); - } - - template -@@ -198,7 +198,7 @@ namespace WTF { - inline bool HashSet::contains(const T& value) const - { - typedef HashSetTranslatorAdapter Adapter; -- return m_impl.contains(value); -+ return m_impl.template contains(value); - } - - template -- cgit v1.2.3