[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

ap at apple.com ap at apple.com
Thu Feb 4 21:28:59 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 471872dae6742e16ffd4f56c27c264b49c63935b
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 27 06:19:43 2010 +0000

            Build fix.
    
            * wtf/HashTable.h: (WTF::HashTable::checkTableConsistencyExceptSize): Remove const from a
            static (empty) version of this function.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53901 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index f563250..861fbea 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-01-26  Alexey Proskuryakov  <ap at apple.com>
 
+        Build fix.
+
+        * wtf/HashTable.h: (WTF::HashTable::checkTableConsistencyExceptSize): Remove const from a
+        static (empty) version of this function.
+
+2010-01-26  Alexey Proskuryakov  <ap at apple.com>
+
         Reviewed by Darin Adler.
 
         https://bugs.webkit.org/show_bug.cgi?id=34150
diff --git a/JavaScriptCore/wtf/HashTable.h b/JavaScriptCore/wtf/HashTable.h
index 900014f..f1473e3 100644
--- a/JavaScriptCore/wtf/HashTable.h
+++ b/JavaScriptCore/wtf/HashTable.h
@@ -394,7 +394,7 @@ namespace WTF {
 #if !ASSERT_DISABLED
         void checkTableConsistencyExceptSize() const;
 #else
-        static void checkTableConsistencyExceptSize() const { }
+        static void checkTableConsistencyExceptSize() { }
 #endif
 
 #if CHECK_HASHTABLE_ITERATORS

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list