From f02a3c5b479a7836af123058bb5a19939fc89d2c Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 1 Jul 2002 21:23:10 +0000 Subject: [PATCH] Now inheriting object_cref from object [SVN r14270] --- include/boost/python/list.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/boost/python/list.hpp b/include/boost/python/list.hpp index 30189f8e..c732b4fd 100644 --- a/include/boost/python/list.hpp +++ b/include/boost/python/list.hpp @@ -13,11 +13,6 @@ namespace boost { namespace python { class list : public object { -# if !defined(BOOST_MSVC) || BOOST_MSVC > 1200 - typedef object const& object_cref; -# else - typedef object object_cref; -# endif public: BOOST_PYTHON_DECL list(); // new list explicit BOOST_PYTHON_DECL list(object_cref sequence); // new list initialized from sequence's items