Ticket #7515: boost.test.wince-uintptr_t.patch

File boost.test.wince-uintptr_t.patch, 381 bytes (added by Jan Hudec <bulb@…>, 10 years ago)

Patch (-p1, non-tortoise) fixing uintptr_t workaround for WinCE

  • boost/test/impl/execution_monitor.ipp

    a b using std::va_list;  
    8484    typedef unsigned uintptr_t;
    8585#  endif
    8686
    87 #  if BOOST_WORKAROUND(_MSC_VER,  < 1300 ) || defined(UNDER_CE)
     87#  if BOOST_WORKAROUND(_MSC_VER,  < 1300 ) || (defined(UNDER_CE) && BOOST_WORKAROUND(_MSC_VER,  < 1500 ))
    8888typedef void* uintptr_t;
    8989#  endif
    9090