Changeset 77948 in webkit


Ignore:
Timestamp:
Feb 8, 2011 9:27:54 AM (13 years ago)
Author:
kbalazs@webkit.org
Message:

2011-02-08 Balazs Kelemen <kbalazs@webkit.org>

Reviewed by Andreas Kling.

[Qt] Should not always define USE_SYSTEM_MALLOC
https://bugs.webkit.org/show_bug.cgi?id=54007

  • wtf/Platform.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r77916 r77948  
     12011-02-08  Balazs Kelemen  <kbalazs@webkit.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Should not always define USE_SYSTEM_MALLOC
     6        https://bugs.webkit.org/show_bug.cgi?id=54007
     7
     8        * wtf/Platform.h:
     9
    1102011-02-08  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r77871 r77948  
    838838/* We must not customize the global operator new and delete for the Qt port. */
    839839#define ENABLE_GLOBAL_FASTMALLOC_NEW 0
    840 #if !PLATFORM(UNIX) || OS(SYMBIAN)
     840#if !OS(UNIX) || OS(SYMBIAN)
    841841#define USE_SYSTEM_MALLOC 1
    842842#endif
Note: See TracChangeset for help on using the changeset viewer.