Changeset 85084 in webkit


Ignore:
Timestamp:
Apr 27, 2011 1:58:59 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-04-27 Adam Barth <abarth@webkit.org>

Reviewed by David Levin.

Enable strict mode for OwnPtr
https://bugs.webkit.org/show_bug.cgi?id=59428

This patch enables strict mode for OwnPtr on PLATFORM(MAC) only.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r85058 r85084  
     12011-04-27  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by David Levin.
     4
     5        Enable strict mode for OwnPtr
     6        https://bugs.webkit.org/show_bug.cgi?id=59428
     7
     8        This patch enables strict mode for OwnPtr on PLATFORM(MAC) only.
     9
     10        * wtf/OwnPtr.h:
     11
    1122011-04-27  Steve Block  <steveblock@google.com>
    213
  • trunk/Source/JavaScriptCore/wtf/OwnPtr.h

    r85028 r85084  
    3030
    3131// Remove this once we make all WebKit code compatible with stricter rules about OwnPtr.
     32#if !PLATFORM(MAC)
    3233#define LOOSE_OWN_PTR
     34#endif
    3335
    3436namespace WTF {
Note: See TracChangeset for help on using the changeset viewer.