Ignore:
Timestamp:
Feb 29, 2012, 2:47:31 PM (13 years ago)
Author:
[email protected]
Message:

RefCounted::deprecatedTurnOffVerifier() should not be deprecated
https://bugs.webkit.org/show_bug.cgi?id=79864

Reviewed by Oliver Hunt.

Removed the word "deprecated" from the name of this method, since this method
should not be deprecated. It works just fine as it is, and there is simply no
alternative to calling this method for many interesting JSC classes.

  • parser/SourceProvider.h:

(JSC::SourceProvider::SourceProvider):

  • runtime/SymbolTable.h:

(JSC::SharedSymbolTable::SharedSymbolTable):

  • wtf/MetaAllocator.cpp:

(WTF::MetaAllocatorHandle::MetaAllocatorHandle):
(WTF::MetaAllocator::allocate):

  • wtf/RefCounted.h:

(RefCountedBase):
(WTF::RefCountedBase::turnOffVerifier):

File:
1 edited

Legend:

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

    r102508 r109268  
    126126        static PassRefPtr<SharedSymbolTable> create() { return adoptRef(new SharedSymbolTable); }
    127127    private:
    128         SharedSymbolTable() { deprecatedTurnOffVerifier(); }
     128        SharedSymbolTable() { turnOffVerifier(); }
    129129    };
    130130   
Note: See TracChangeset for help on using the changeset viewer.