Ignore:
Timestamp:
Aug 25, 2011, 5:41:03 PM (14 years ago)
Author:
[email protected]
Message:

Fixing broken build due to unused variables in release mode
https://bugs.webkit.org/show_bug.cgi?id=67004

Unreviewed, release build fix.

Fixing broken build due to unused variables in ASSERTs in release build.

Patch by Mark Hahnenberg <[email protected]> on 2011-08-25

  • runtime/JSObject.h:

(JSC::JSObject::finishCreation):

  • runtime/JSString.h:

(JSC::RopeBuilder::finishCreation):

  • runtime/ScopeChain.h:

(JSC::ScopeChainNode::finishCreation):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSString.h

    r93835 r93841  
    283283        {
    284284            Base::finishCreation(globalData);
    285             ASSERT(fiberCount <= s_maxInternalRopeLength);
     285            ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength);
    286286            unsigned index = 0;
    287287            appendStringInCreate(index, s1);
     
    293293        {
    294294            Base::finishCreation(globalData);
    295             ASSERT(fiberCount <= s_maxInternalRopeLength);
     295            ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength);
    296296            unsigned index = 0;
    297297            appendStringInCreate(index, s1);
     
    303303        {
    304304            Base::finishCreation(globalData);
    305             ASSERT(fiberCount <= s_maxInternalRopeLength);
     305            ASSERT_UNUSED(fiberCount, fiberCount <= s_maxInternalRopeLength);
    306306            unsigned index = 0;
    307307            appendStringInCreate(index, u1);
Note: See TracChangeset for help on using the changeset viewer.