https://bugs.webkit.org/show_bug.cgi?id=111495
Unreviewed fix for mac build.
* Modules/indexeddb/IDBBackingStore.cpp:
(WebCore::IDBBackingStore::IDBBackingStore):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@144848
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-03-05 Alec Flett <alecflett@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 <acolwell@chromium.org>
Add V8Document.h include when the V8 code generator creates a toV8(Document*) call.
// 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();