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/Assertions.h

    r57016 r58307  
    6363#endif
    6464
    65 #if COMPILER(MSVC7) || COMPILER(WINSCW)
     65#if COMPILER(MSVC7_OR_LOWER) || COMPILER(WINSCW)
    6666#define HAVE_VARIADIC_MACRO 0
    6767#else
     
    225225/* ASSERT_WITH_MESSAGE */
    226226
    227 #if COMPILER(MSVC7)
     227#if COMPILER(MSVC7_OR_LOWER)
    228228#define ASSERT_WITH_MESSAGE(assertion) ((void)0)
    229229#elif COMPILER(WINSCW)
     
    265265/* FATAL */
    266266
    267 #if COMPILER(MSVC7)
     267#if COMPILER(MSVC7_OR_LOWER)
    268268#define FATAL() ((void)0)
    269269#elif COMPILER(WINSCW)
     
    280280/* LOG_ERROR */
    281281
    282 #if COMPILER(MSVC7)
     282#if COMPILER(MSVC7_OR_LOWER)
    283283#define LOG_ERROR() ((void)0)
    284284#elif COMPILER(WINSCW)
     
    292292/* LOG */
    293293
    294 #if COMPILER(MSVC7)
     294#if COMPILER(MSVC7_OR_LOWER)
    295295#define LOG() ((void)0)
    296296#elif COMPILER(WINSCW)
     
    306306/* LOG_VERBOSE */
    307307
    308 #if COMPILER(MSVC7)
     308#if COMPILER(MSVC7_OR_LOWER)
    309309#define LOG_VERBOSE(channel) ((void)0)
    310310#elif COMPILER(WINSCW)
Note: See TracChangeset for help on using the changeset viewer.