From c6232152bbdb9597e30ff56ec8687876eb0adbc9 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Thu, 5 Sep 2013 23:15:23 +0200 Subject: [PATCH 1/3] [python] Drop backward-compatible support in to_python_value.hpp - As per the discussion on Boost mailing list from 31 Jul 2013, GCC >= 3.0 is now base requirement for boost. --- boost/python/to_python_value.hpp | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/boost/python/to_python_value.hpp b/boost/python/to_python_value.hpp index a48948d..aaabb9c 100644 --- a/boost/python/to_python_value.hpp +++ b/boost/python/to_python_value.hpp @@ -147,11 +147,6 @@ namespace detail template inline PyObject* registry_to_python_value::operator()(argument_type x) const { - typedef converter::registered r; -# if BOOST_WORKAROUND(__GNUC__, < 3) - // suppresses an ICE, somehow - (void)r::converters; -# endif return converter::registered::converters.to_python(&x); } -- 1.7.6.5