Changeset 64045 in webkit


Ignore:
Timestamp:
Jul 26, 2010 7:49:37 AM (14 years ago)
Author:
jorlow@chromium.org
Message:

2010-07-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Fix IndexedDB release build on mac
https://bugs.webkit.org/show_bug.cgi?id=42377

  • storage/IDBDatabaseImpl.cpp: (WebCore::IDBDatabaseImpl::objectStore):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64042 r64045  
     12010-07-26  Jeremy Orlow  <jorlow@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        Fix IndexedDB release build on mac
     6        https://bugs.webkit.org/show_bug.cgi?id=42377
     7
     8        * storage/IDBDatabaseImpl.cpp:
     9        (WebCore::IDBDatabaseImpl::objectStore):
     10
    1112010-07-26  Satish Sampath  <satish@chromium.org>
    212
  • trunk/WebCore/storage/IDBDatabaseImpl.cpp

    r61015 r64045  
    6969{
    7070    // FIXME: If no transaction is running, this should implicitly start one.
    71     ASSERT(!mode); // FIXME: Handle non-standard modes.
     71    ASSERT_UNUSED(mode, !mode); // FIXME: Handle non-standard modes.
    7272    return m_objectStores.get(name);
    7373}
Note: See TracChangeset for help on using the changeset viewer.