Changeset 153537 in webkit


Ignore:
Timestamp:
Jul 31, 2013 12:32:22 PM (11 years ago)
Author:
barraclough@apple.com
Message:

Speculative Windows build fix.

Reviewed by NOBODY

  • runtime/JSString.cpp:

(JSC::JSRopeString::getIndexSlowCase):

  • runtime/JSString.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r153532 r153537  
     12013-07-31  Gavin Barraclough  <barraclough@apple.com>
     2
     3        Speculative Windows build fix.
     4
     5        Reviewed by NOBODY
     6
     7        * runtime/JSString.cpp:
     8        (JSC::JSRopeString::getIndexSlowCase):
     9        * runtime/JSString.h:
     10
    1112013-07-30  Gavin Barraclough  <barraclough@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/JSString.cpp

    r153532 r153537  
    231231}
    232232
    233 JS_EXPORT JSString* JSRopeString::getIndexSlowCase(ExecState* exec, unsigned i)
     233JSString* JSRopeString::getIndexSlowCase(ExecState* exec, unsigned i)
    234234{
    235235    ASSERT(isRope());
  • trunk/Source/JavaScriptCore/runtime/JSString.h

    r153532 r153537  
    321321        void outOfMemory(ExecState*) const;
    322322           
    323         JSString* getIndexSlowCase(ExecState*, unsigned);
     323        JS_EXPORT_PRIVATE JSString* getIndexSlowCase(ExecState*, unsigned);
    324324
    325325        mutable FixedArray<WriteBarrier<JSString>, s_maxInternalRopeLength> m_fibers;
Note: See TracChangeset for help on using the changeset viewer.