Changeset 190719 in webkit


Ignore:
Timestamp:
Oct 8, 2015 3:37:43 AM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Remove PageReservation.h clang fixme that has been fixed for a while
https://bugs.webkit.org/show_bug.cgi?id=149908

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-10-08
Reviewed by Csaba Osztrogonác.

  • wtf/PageReservation.h:

(WTF::PageReservation::operator bool): Deleted.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r190617 r190719  
     12015-10-08  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remove PageReservation.h clang fixme that has been fixed for a while
     4        https://bugs.webkit.org/show_bug.cgi?id=149908
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * wtf/PageReservation.h:
     9        (WTF::PageReservation::operator bool): Deleted.
     10
    1112015-10-06  Daniel Bates  <dbates@webkit.org>
    212
  • trunk/Source/WTF/wtf/PageReservation.h

    r111778 r190719  
    6666    using PageBlock::base;
    6767    using PageBlock::size;
    68 
    69 #ifndef __clang__
    7068    using PageBlock::operator bool;
    71 #else
    72     // FIXME: This is a workaround for <rdar://problem/8876150>, wherein Clang incorrectly emits an access
    73     // control warning when a client tries to use operator bool exposed above via "using PageBlock::operator bool".
    74     operator bool() const { return PageBlock::operator bool(); }
    75 #endif
    7669
    7770    void commit(void* start, size_t size)
Note: See TracChangeset for help on using the changeset viewer.