⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 211088 in webkit


Ignore:
Timestamp:
Jan 24, 2017, 10:15:12 AM (10 years ago)
Author:
Konstantin Tokarev
Message:

VS2015 supports ref qualifiers
https://bugs.webkit.org/show_bug.cgi?id=167368

Reviewed by Sam Weinig.

  • wtf/Compiler.h: Enable

WTF_COMPILER_SUPPORTS_CXX_REFERENCE_QUALIFIED_FUNCTIONS for VS2015

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r211087 r211088  
     12017-01-24  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        VS2015 supports ref qualifiers
     4        https://bugs.webkit.org/show_bug.cgi?id=167368
     5
     6        Reviewed by Sam Weinig.
     7
     8        * wtf/Compiler.h: Enable
     9        WTF_COMPILER_SUPPORTS_CXX_REFERENCE_QUALIFIED_FUNCTIONS for VS2015
     10
    1112017-01-24  Daniel Bates  <dabates@apple.com>
    212
  • trunk/Source/WTF/wtf/Compiler.h

    r210840 r211088  
    121121#if defined(_MSC_VER)
    122122#define WTF_COMPILER_MSVC 1
     123
     124#if _MSC_VER >= 1900
     125#define WTF_COMPILER_SUPPORTS_CXX_REFERENCE_QUALIFIED_FUNCTIONS 1
     126#endif
     127
    123128#endif
    124129
Note: See TracChangeset for help on using the changeset viewer.