id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 5708,VC++6 can not compile assert.hpp header,Antony Polukhin,Beman Dawes,"VC++6 has a little problem with std::exit (compiler can not find this function). It is possible to fix this bug by replacing [[BR]] {{{ #if defined(UNDER_CE) // The Windows CE CRT library does not have std::abort() so use exit(-1) instead. std::exit(-1); #else }}} [[BR]] (line 104 of boost/assert.hpp) with {{{ #if defined(UNDER_CE) || BOOST_WORKAROUND(BOOST_MSVC,<1300) // The Windows CE CRT library and VC++6 does not have std::abort() so use exit(-1) instead. using namespace std; exit(-1); #else }}} But I`m not sure about portability of this bugfix. ",Patches,closed,To Be Determined,utility,Boost Development Trunk,Problem,wontfix,,