Changeset 79707 in webkit for trunk/Source/JavaScriptCore/jsc.cpp


Ignore:
Timestamp:
Feb 25, 2011, 11:20:26 AM (14 years ago)
Author:
Patrick Gansterer
Message:

2011-02-25 Patrick Gansterer <Patrick Gansterer>

Unreviewed WinCE build fix for r79695.

  • jsc.cpp: (main): SetErrorMode isn't available on WinCE.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r79695 r79707  
    326326{
    327327#if OS(WINDOWS)
     328#if !OS(WINCE)
    328329    // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for
    329330    // testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
    330331    // error mode here to work around Cygwin's behavior. See <http://webkit.org/b/55222>.
    331332    ::SetErrorMode(0);
     333#endif
    332334
    333335#if defined(_DEBUG)
Note: See TracChangeset for help on using the changeset viewer.