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


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

Compile fix for Visual Studio 2010
https://bugs.webkit.org/show_bug.cgi?id=37867

Reviewed by Simon Hausmann.

Patch by Prasanth Ullattil <[email protected]>

  • runtime/Structure.cpp:

(JSC::Structure::transitionTableAdd):

  • wtf/MathExtras.h:
  • wtf/Platform.h:
File:
1 edited

Legend:

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

    r58307 r58308  
    6060/* COMPILER(MSVC) Microsoft Visual C++ */
    6161/* COMPILER(MSVC7_OR_LOWER) Microsoft Visual C++ 2003 or lower*/
     62/* COMPILER(MSVC9_OR_LOWER) Microsoft Visual C++ 2008 or lower*/
    6263#if defined(_MSC_VER)
    6364#define WTF_COMPILER_MSVC 1
    6465#if _MSC_VER < 1400
    6566#define WTF_COMPILER_MSVC7_OR_LOWER 1
     67#elif _MSC_VER < 1600
     68#define WTF_COMPILER_MSVC9_OR_LOWER 1
    6669#endif
    6770#endif
Note: See TracChangeset for help on using the changeset viewer.