diff options
Diffstat (limited to 'WebCore/storage/IDBDatabaseImpl.cpp')
-rw-r--r-- | WebCore/storage/IDBDatabaseImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/storage/IDBDatabaseImpl.cpp b/WebCore/storage/IDBDatabaseImpl.cpp index 712830a..162efab 100644 --- a/WebCore/storage/IDBDatabaseImpl.cpp +++ b/WebCore/storage/IDBDatabaseImpl.cpp @@ -68,7 +68,7 @@ void IDBDatabaseImpl::createObjectStore(const String& name, const String& keyPat PassRefPtr<IDBObjectStore> IDBDatabaseImpl::objectStore(const String& name, unsigned short mode) { // FIXME: If no transaction is running, this should implicitly start one. - ASSERT(!mode); // FIXME: Handle non-standard modes. + ASSERT_UNUSED(mode, !mode); // FIXME: Handle non-standard modes. return m_objectStores.get(name); } |