2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-01 20:52:13 +00:00

use def_init() for compilers that don't support init<... optional<...> >; with this all tru64_cxx test pass; (I know this is not testing the default argument support, but a failing test isn't very inspiring for others, and the addition shows people what the alternative is.)

[SVN r15154]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2002-09-04 07:33:35 +00:00
parent 0453e05bb2
commit 7407a6b144

View File

@@ -132,10 +132,13 @@ BOOST_PYTHON_MODULE_INIT(defaults_ext)
# if (!defined(__EDG_VERSION__) || __EDG_VERSION__ > 245) \
&& (!defined(BOOST_INTEL_CXX_VERSION) || BOOST_INTEL_CXX_VERSION > 600)
.def(init<int, optional<char, std::string, double> >())
#else
.def_init(args<int>())
.def_init(args<int, char>())
.def_init(args<int, char, std::string>())
.def_init(args<int, char, std::string, double>())
#endif
.def("get_state", &X::get_state)
.def("get_state", &X::get_state)
.def("bar", &X::bar, X_bar_stubs())
.def("foo", (object(X::*)(std::string, bool) const)0, X_foo_2_stubs())
.def("foo", (object(X::*)(int, bool) const)0, X_foo_2_stubs())