Changeset 64934 in webkit


Ignore:
Timestamp:
Aug 7, 2010 8:55:50 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-08-07 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

Add ENABLE(YARR) guard around JSGlobalData::m_regexAllocator
https://bugs.webkit.org/show_bug.cgi?id=43399

m_regexAllocator is used only by RegExp::compile which is guarded with ENABLE(YARR).

  • runtime/JSGlobalData.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r64933 r64934  
     12010-08-07  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add ENABLE(YARR) guard around JSGlobalData::m_regexAllocator
     6        https://bugs.webkit.org/show_bug.cgi?id=43399
     7
     8        m_regexAllocator is used only by RegExp::compile which is guarded with ENABLE(YARR).
     9
     10        * runtime/JSGlobalData.h:
     11
    1122010-08-07  Patrick Roland Gansterer  <paroga@paroga.com>
    213
  • trunk/JavaScriptCore/runtime/JSGlobalData.h

    r64146 r64934  
    221221        RegExpCache* m_regExpCache;
    222222
     223#if ENABLE(YARR)
    223224        BumpPointerAllocator m_regexAllocator;
     225#endif
    224226
    225227#ifndef NDEBUG
Note: See TracChangeset for help on using the changeset viewer.