Fixing MinGW (3)

This commit is contained in:
Antony Polukhin
2017-02-25 23:24:48 +03:00
parent 7b6a8e84f7
commit 4191419560
3 changed files with 8 additions and 5 deletions

View File

@@ -24,8 +24,8 @@ BOOST_NOINLINE void foo(int i) {
#if defined(BOOST_GCC) && defined(BOOST_WINDOWS)
// MinGW workaround
#include <cstdlib> // std::_Exit
namespace std { using ::_Exit; };
#include <cstdlib> // ::_Exit
namespace std { using ::_Exit; }
#endif