2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 07:02:15 +00:00

Now inheriting object_cref from object

[SVN r14270]
This commit is contained in:
Dave Abrahams
2002-07-01 21:23:10 +00:00
parent d7df5126ce
commit f02a3c5b47

View File

@@ -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