We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13c902 commit 25bfd3cCopy full SHA for 25bfd3c
1 file changed
include/boost/python/to_python_value.hpp
@@ -101,6 +101,11 @@ namespace detail
101
template <class T>
102
inline PyObject* registry_to_python_value<T>::operator()(argument_type x) const
103
{
104
+ typedef converter::registered<argument_type> r;
105
+# if BOOST_WORKAROUND(__GNUC__, < 3)
106
+ // suppresses an ICE, somehow
107
+ (void)r::converters;
108
+# endif
109
return converter::registered<argument_type>::converters.to_python(&x);
110
}
111
0 commit comments