Ignore:
Timestamp:
Jan 12, 2010, 11:42:07 AM (15 years ago)
Author:
[email protected]
Message:

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=33540
Make it possible to build in debug mode with assertions disabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/Identifier.cpp

    r52859 r53151  
    248248void Identifier::checkSameIdentifierTable(ExecState* exec, UString::Rep*)
    249249{
    250     ASSERT(exec->globalData().identifierTable == currentIdentifierTable());
     250    ASSERT_UNUSED(exec, exec->globalData().identifierTable == currentIdentifierTable());
    251251}
    252252
    253253void Identifier::checkSameIdentifierTable(JSGlobalData* globalData, UString::Rep*)
    254254{
    255     ASSERT(globalData->identifierTable == currentIdentifierTable());
     255    ASSERT_UNUSED(globalData, globalData->identifierTable == currentIdentifierTable());
    256256}
    257257
Note: See TracChangeset for help on using the changeset viewer.