1
0
forked from boostorg/bind

Disabled warning 4512

[SVN r32286]
This commit is contained in:
Peter Dimov
2006-01-11 11:51:04 +00:00
parent cb2cca146f
commit bba3d96bda

View File

@@ -24,6 +24,11 @@
#include <boost/config.hpp>
#include <boost/bind/arg.hpp>
#ifdef BOOST_MSVC
# pragma warning(push)
# pragma warning(disable: 4512) // assignment operator could not be generated
#endif
namespace boost
{
@@ -277,4 +282,9 @@ template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, c
} // namespace boost
#ifdef BOOST_MSVC
# pragma warning(default: 4512) // assignment operator could not be generated
# pragma warning(pop)
#endif
#endif // #ifndef BOOST_BIND_STORAGE_HPP_INCLUDED