From bba3d96bdae64ca8b4d388215cca7776b8fe781e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 11 Jan 2006 11:51:04 +0000 Subject: [PATCH] Disabled warning 4512 [SVN r32286] --- include/boost/bind/storage.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/boost/bind/storage.hpp b/include/boost/bind/storage.hpp index 298707f..5ed60bb 100644 --- a/include/boost/bind/storage.hpp +++ b/include/boost/bind/storage.hpp @@ -24,6 +24,11 @@ #include #include +#ifdef BOOST_MSVC +# pragma warning(push) +# pragma warning(disable: 4512) // assignment operator could not be generated +#endif + namespace boost { @@ -277,4 +282,9 @@ template