[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

paroga at webkit.org paroga at webkit.org
Wed Dec 22 14:28:21 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 85cbbf09ca5ddc9721b17b4f67624d156700bd75
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Oct 10 22:57:47 2010 +0000

    2010-10-10  Patrick Gansterer  <paroga at webkit.org>
    
            Unreviewed.
    
            Windows build fix after r69472.
    
            * wtf/text/StringHash.h:
            (WTF::CaseFoldingHash::hash):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69475 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b9b0e39..c5ae2c1 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,14 @@
 2010-10-10  Patrick Gansterer  <paroga at webkit.org>
 
+        Unreviewed.
+
+        Windows build fix after r69472.
+
+        * wtf/text/StringHash.h:
+        (WTF::CaseFoldingHash::hash):
+
+2010-10-10  Patrick Gansterer  <paroga at webkit.org>
+
         Reviewed by Adam Barth.
 
         Use WTF::StringHasher in WTF::CaseFoldingHash
diff --git a/JavaScriptCore/wtf/text/StringHash.h b/JavaScriptCore/wtf/text/StringHash.h
index 484396d..e5b6252 100644
--- a/JavaScriptCore/wtf/text/StringHash.h
+++ b/JavaScriptCore/wtf/text/StringHash.h
@@ -104,7 +104,7 @@ namespace WTF {
     public:
         static unsigned hash(const UChar* data, unsigned length)
         {
-            return StringHasher::createHash<UChar, foldCase>(data, length);
+            return StringHasher::createHash<UChar, foldCase<UChar> >(data, length);
         }
 
         static unsigned hash(StringImpl* str)
@@ -114,7 +114,7 @@ namespace WTF {
 
         static unsigned hash(const char* data, unsigned length)
         {
-            return StringHasher::createHash<char, foldCase>(data, length);
+            return StringHasher::createHash<char, foldCase<char> >(data, length);
         }
 
         static bool equal(const StringImpl* a, const StringImpl* b)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list