1
0
forked from boostorg/bind

Disable bind_stdcall_test on non-MSVC as well

This commit is contained in:
Peter Dimov
2017-11-05 22:19:57 +02:00
parent f75d27469a
commit f25070d982

View File

@@ -1,5 +1,15 @@
#include <boost/config.hpp> #include <boost/config.hpp>
#ifndef BOOST_MSVC
int main()
{
}
#else
#include <boost/config.hpp>
#if defined(BOOST_MSVC) #if defined(BOOST_MSVC)
#pragma warning(disable: 4786) // identifier truncated in debug info #pragma warning(disable: 4786) // identifier truncated in debug info
#pragma warning(disable: 4710) // function not inlined #pragma warning(disable: 4710) // function not inlined
@@ -108,3 +118,5 @@ int main()
function_test(); function_test();
return boost::report_errors(); return boost::report_errors();
} }
#endif