Changeset 162161 in webkit


Ignore:
Timestamp:
Jan 16, 2014 3:28:30 PM (10 years ago)
Author:
andersca@apple.com
Message:

Remove FINAL macro
https://bugs.webkit.org/show_bug.cgi?id=127149

Reviewed by Tim Horton.

  • wtf/Compiler.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r162139 r162161  
     12014-01-16  Anders Carlsson  <andersca@apple.com>
     2
     3        Remove FINAL macro
     4        https://bugs.webkit.org/show_bug.cgi?id=127149
     5
     6        Reviewed by Tim Horton.
     7
     8        * wtf/Compiler.h:
     9
    1102014-01-16  Peter Molnar  <pmolnar.u-szeged@partner.samsung.com>
    211
  • trunk/Source/WTF/wtf/Compiler.h

    r162139 r162161  
    254254#endif
    255255
    256 /* FINAL */
    257 
    258 #if COMPILER_SUPPORTS(CXX_OVERRIDE_CONTROL) && !COMPILER_QUIRK(FINAL_IS_BUGGY)
    259 #if COMPILER_QUIRK(FINAL_IS_CALLED_SEALED)
    260 #define FINAL sealed
    261 #define final sealed
    262 #else
    263 #define FINAL final
    264 #endif
    265 #else
    266 #define FINAL
    267 #endif
    268 
    269256#if COMPILER_SUPPORTS(CXX_DELETED_FUNCTIONS)
    270257#define WTF_DELETED_FUNCTION = delete
Note: See TracChangeset for help on using the changeset viewer.