Title: [144848] trunk/Source
Revision
144848
Author
alecfl...@chromium.org
Date
2013-03-05 16:35:02 -0800 (Tue, 05 Mar 2013)

Log Message

Fix mac clang build with long long
https://bugs.webkit.org/show_bug.cgi?id=111495

Unreviewed fix for mac build.

* Modules/indexeddb/IDBBackingStore.cpp:
(WebCore::IDBBackingStore::IDBBackingStore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (144847 => 144848)


--- trunk/Source/WebCore/ChangeLog	2013-03-06 00:26:52 UTC (rev 144847)
+++ trunk/Source/WebCore/ChangeLog	2013-03-06 00:35:02 UTC (rev 144848)
@@ -1,3 +1,13 @@
+2013-03-05  Alec Flett  <alecfl...@chromium.org>
+
+        Fix mac clang build with long long
+        https://bugs.webkit.org/show_bug.cgi?id=111495
+
+        Unreviewed fix for mac build.
+
+        * Modules/indexeddb/IDBBackingStore.cpp:
+        (WebCore::IDBBackingStore::IDBBackingStore):
+
 2013-03-05  Aaron Colwell  <acolw...@chromium.org>
 
         Add V8Document.h include when the V8 code generator creates a toV8(Document*) call.

Modified: trunk/Source/WebKit/chromium/tests/IDBBackingStoreTest.cpp (144847 => 144848)


--- trunk/Source/WebKit/chromium/tests/IDBBackingStoreTest.cpp	2013-03-06 00:26:52 UTC (rev 144847)
+++ trunk/Source/WebKit/chromium/tests/IDBBackingStoreTest.cpp	2013-03-06 00:35:02 UTC (rev 144848)
@@ -94,8 +94,8 @@
 // Make sure that using very high ( more than 32 bit ) values for databaseId and objectStoreId still work.
 TEST_F(IDBBackingStoreTest, HighIds)
 {
-    const int64_t highDatabaseId = 1UL << 35;
-    const int64_t highObjectStoreId = 1UL << 39;
+    const int64_t highDatabaseId = 1ULL << 35;
+    const int64_t highObjectStoreId = 1ULL << 39;
     {
         IDBBackingStore::Transaction transaction1(m_backingStore.get());
         transaction1.begin();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to