From 31b8b58de95accbf0b8da092e615370a8def55b0 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 24 Nov 2002 21:45:09 +0000 Subject: [PATCH] CW workaround [SVN r16393] --- include/boost/python/converter/registrations.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/python/converter/registrations.hpp b/include/boost/python/converter/registrations.hpp index 8bbe1621..70c7df68 100644 --- a/include/boost/python/converter/registrations.hpp +++ b/include/boost/python/converter/registrations.hpp @@ -49,6 +49,11 @@ struct BOOST_PYTHON_DECL registration // The unique to_python converter for the associated C++ type. to_python_function_t m_to_python; + +# if defined(__MWERKS__) && __MWERKS__ <= 0x3003 + private: + void operator=(registration); // This is not defined, and just keeps MWCW happy. +# endif }; //