Ignore:
Timestamp:
Sep 16, 2009, 12:29:54 PM (16 years ago)
Author:
[email protected]
Message:

2009-09-16 Benjamin C Meyer <[email protected]>

Reviewed by Eric Seidel.

The webkit stdint and stdbool headers exists because
the compiler MSVC doesn't include them. The check
should not check for PLATFORM(WIN_OS) but for MSVC.

  • os-win32/stdbool.h:
  • os-win32/stdint.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/os-win32/stdbool.h

    r29663 r48427  
    2222#define STDBOOL_WIN32_H
    2323
    24 #if !PLATFORM(WIN_OS)
    25 #error "This stdbool.h file should only be compiled under Windows"
     24#if !COMPILER(MSVC)
     25#error "This stdbool.h file should only be compiled with MSVC"
    2626#endif
    2727
Note: See TracChangeset for help on using the changeset viewer.