forked from boostorg/core
Use _exit instead of _Exit on MinGW
This commit is contained in:
@ -56,7 +56,7 @@ public:
|
|||||||
if (!report_) {
|
if (!report_) {
|
||||||
BOOST_LIGHTWEIGHT_TEST_OSTREAM << "main() should return report_errors()" << std::endl;
|
BOOST_LIGHTWEIGHT_TEST_OSTREAM << "main() should return report_errors()" << std::endl;
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||||
::_exit( 3 );
|
::_exit( 3 );
|
||||||
#else
|
#else
|
||||||
::_Exit( 3 );
|
::_Exit( 3 );
|
||||||
|
Reference in New Issue
Block a user