* c++ style comments, pls!

* formatting
This commit is contained in:
artemp 2013-05-16 19:14:10 +01:00
parent 1c03b9fefa
commit 8ed9606046

View file

@ -100,11 +100,13 @@ struct python_optional : public boost::noncopyable
}
};
/** This class works around a bug in boost python.
// This class works around a feature in boost python.
// See http://osdir.com/ml/python.c++/2003-11/msg00158.html
See http://osdir.com/ml/python.c++/2003-11/msg00158.html
*/
template <typename T, typename X1 = boost::python::detail::not_specified, typename X2 = boost::python::detail::not_specified, typename X3 = boost::python::detail::not_specified>
template <typename T,
typename X1 = boost::python::detail::not_specified,
typename X2 = boost::python::detail::not_specified,
typename X3 = boost::python::detail::not_specified>
class class_with_converter : public boost::python::class_<T, X1, X2, X3>
{
public: