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


Ignore:
Timestamp:
Nov 27, 2008, 5:07:08 AM (17 years ago)
Author:
[email protected]
Message:

2008-11-27 Alp Toker <[email protected]>

Change recently introduced C++ comments in Platform.h to C comments to
fix the minidom build with traditional C.

Build GtkLauncher and minidom with the '-ansi' compiler flag to detect
API header breakage at build time.

File:
1 edited

Legend:

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

    r38699 r38819  
    8080
    8181#if defined (__S60__) || defined (__SYMBIAN32__)
    82 // we are cross-compiling, it is not really windows
     82/* we are cross-compiling, it is not really windows */
    8383#undef WTF_PLATFORM_WIN_OS
    8484#undef WTF_PLATFORM_WIN
     
    422422#endif
    423423
    424 // CTI only supports x86 at the moment, and has only been tested on Mac and Windows.
     424/* CTI only supports x86 at the moment, and has only been tested on Mac and Windows. */
    425425#if !defined(ENABLE_JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))
    426426#define ENABLE_JIT 1
    427427#endif
    428428
    429 // WREC only supports x86 at the moment, and has only been tested on Mac and Windows.
     429/* WREC only supports x86 at the moment, and has only been tested on Mac and Windows. */
    430430#if !defined(ENABLE_WREC) && ENABLE(JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))
    431431#define ENABLE_WREC 1
     
    447447#endif
    448448
    449 // Use "fastcall" calling convention on MSVC
     449/* Use "fastcall" calling convention on MSVC */
    450450#if COMPILER(MSVC)
    451451#define WTF_USE_FAST_CALL_CTI_ARGUMENT 1
Note: See TracChangeset for help on using the changeset viewer.