Changeset 126447 in webkit


Ignore:
Timestamp:
Aug 23, 2012 10:55:05 AM (12 years ago)
Author:
ggaren@apple.com
Message:

Fixed a fastMallocForbid/Allow compile error for some compilers
https://bugs.webkit.org/show_bug.cgi?id=94775

Reviewed by Gavin Barraclough.

  • wtf/FastMalloc.h:

(WTF::fastMallocForbid()):
(WTF::fastMallocAllow()): Export, since these are called by JavaScriptCore.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r126379 r126447  
     12012-08-22  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Fixed a fastMallocForbid/Allow compile error for some compilers
     4        https://bugs.webkit.org/show_bug.cgi?id=94775
     5
     6        Reviewed by Gavin Barraclough.
     7
     8        * wtf/FastMalloc.h:
     9        (WTF::fastMallocForbid()):
     10        (WTF::fastMallocAllow()): Export, since these are called by JavaScriptCore.
     11
    1122012-08-22  Geoffrey Garen  <ggaren@apple.com>
    213
  • trunk/Source/WTF/wtf/FastMalloc.h

    r111778 r126447  
    7777
    7878#ifndef NDEBUG   
    79     void fastMallocForbid();
    80     void fastMallocAllow();
     79    WTF_EXPORT_PRIVATE void fastMallocForbid();
     80    WTF_EXPORT_PRIVATE void fastMallocAllow();
    8181#endif
    8282
Note: See TracChangeset for help on using the changeset viewer.