Ignore:
Timestamp:
Oct 5, 2011, 3:32:28 AM (14 years ago)
Author:
Patrick Gansterer
Message:

Unreviewed WinCE build fix for r96595.

  • wtf/Assertions.cpp:

RtlCaptureStackBackTrace() isn't available on WinCE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/wtf/Assertions.cpp

    r96641 r96690  
    171171#if OS(DARWIN) || OS(LINUX)
    172172    *size = backtrace(stack, *size);
    173 #elif OS(WINDOWS)
     173#elif OS(WINDOWS) && !OS(WINCE)
    174174    // The CaptureStackBackTrace function is available in XP, but it is not defined
    175175    // in the Windows Server 2003 R2 Platform SDK. So, we'll grab the function
Note: See TracChangeset for help on using the changeset viewer.