Changeset 58307 in webkit for trunk/JavaScriptCore/wtf/Platform.h


Ignore:
Timestamp:
Apr 27, 2010, 6:56:19 AM (15 years ago)
Author:
[email protected]
Message:

Rename COMPILER(MSVC7) to COMPILER(MSVC7_OR_LOWER)

Reviewed by Simon Hausmann.

  • config.h:

(JSC::Structure::transitionTableAdd):

  • wtf/Assertions.h:
  • wtf/Atomics.h:
  • wtf/CurrentTime.h:

(WTF::getLocalTime):

  • wtf/Platform.h:
  • wtf/StaticConstructors.h:
  • wtf/StringExtras.h:
  • wtf/Vector.h:

(WTF::::append):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Platform.h

    r57804 r58307  
    5959
    6060/* COMPILER(MSVC) Microsoft Visual C++ */
    61 /* COMPILER(MSVC7) Microsoft Visual C++ v7 or lower*/
     61/* COMPILER(MSVC7_OR_LOWER) Microsoft Visual C++ 2003 or lower*/
    6262#if defined(_MSC_VER)
    6363#define WTF_COMPILER_MSVC 1
    6464#if _MSC_VER < 1400
    65 #define WTF_COMPILER_MSVC7 1
     65#define WTF_COMPILER_MSVC7_OR_LOWER 1
    6666#endif
    6767#endif
Note: See TracChangeset for help on using the changeset viewer.