Update of /cvsroot/boost/boost/boost/python
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28519/boost/python
Modified Files:
Tag: RC_1_34_0
operators.hpp
Log Message:
Apply missing elements of previously-"applied" bug fix.
Index: operators.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/python/operators.hpp,v
retrieving revision 1.20.12.1
retrieving revision 1.20.12.2
diff -u -d -r1.20.12.1 -r1.20.12.2
--- operators.hpp 29 Sep 2006 02:09:13 -0000 1.20.12.1
+++ operators.hpp 29 Sep 2006 15:45:29 -0000 1.20.12.2
@@ -18,6 +18,7 @@
# include <boost/python/other.hpp>
# include <boost/lexical_cast.hpp>
# include <boost/python/refcount.hpp>
+# include <boost/python/detail/unwrap_wrapper.hpp>
# include <string>
# include <complex>
@@ -346,7 +347,6 @@
BOOST_PYTHON_UNARY_OPERATOR(float, double, float_)
BOOST_PYTHON_UNARY_OPERATOR(complex, std::complex<double>, complex_)
BOOST_PYTHON_UNARY_OPERATOR(str, lexical_cast<std::string>, str)
-BOOST_PYTHON_UNARY_OPERATOR(repr, lexical_cast<std::string>, repr)
# undef BOOST_PYTHON_UNARY_OPERATOR
}} // namespace boost::python
@@ -358,7 +358,6 @@
using boost::python::self_ns::float_;
using boost::python::self_ns::complex_;
using boost::python::self_ns::str;
-using boost::python::self_ns::repr;
using boost::python::self_ns::pow;
# endif
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|