Ticket #2573: unit_test_main.ipp-BOOST_MSVC.diff

File unit_test_main.ipp-BOOST_MSVC.diff, 594 bytes (added by Eric Prud'hommeaux <eric+boost@…>, 14 years ago)

patch to limit on MSVC workaround level *only* on MSVC

  • /

    old new  
    103103    explicit        test_case_filter( const_string tc_to_tun )
    104104    : m_depth( 0 )
    105105    {
    106 #if !defined(__BORLANDC__) && BOOST_WORKAROUND( BOOST_MSVC, >= 1300)
     106#if !defined(__BORLANDC__) && ( !defined(BOOST_MSVC) || BOOST_WORKAROUND( BOOST_MSVC, >= 1300) )
    107107        string_token_iterator tit( tc_to_tun, (dropped_delimeters = "/", kept_delimeters = dt_none) );
    108108
    109109        while( tit != string_token_iterator() ) {