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

    r57904 r58307  
    5252#ifndef SKIP_STATIC_CONSTRUCTORS_ON_GCC
    5353    // Define an global in the normal way.
    54 #if COMPILER(MSVC7)
     54#if COMPILER(MSVC7_OR_LOWER)
    5555#define DEFINE_GLOBAL(type, name) \
    5656    const type name;
     
    6666// Define an correctly-sized array of pointers to avoid static initialization.
    6767// Use an array of pointers instead of an array of char in case there is some alignment issue.
    68 #if COMPILER(MSVC7)
     68#if COMPILER(MSVC7_OR_LOWER)
    6969#define DEFINE_GLOBAL(type, name) \
    7070    void * name[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)];
Note: See TracChangeset for help on using the changeset viewer.