1
0
forked from boostorg/bind

Merge branch 'develop' into feature/noexcept-functions

This commit is contained in:
Peter Dimov
2017-11-05 22:21:25 +02:00

View File

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