2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

Stop testing c++98 support

This commit is contained in:
Stefan Seefeld
2025-11-02 09:33:34 -05:00
parent 608ec27c4d
commit 5d7b9a0648
10 changed files with 23 additions and 21 deletions

View File

@@ -99,7 +99,7 @@ BOOST_PYTHON_MODULE(back_reference_ext)
.def("set", &Y::set)
;
class_<Z,std::auto_ptr<Z> >("Z", init<int>())
class_<Z,std::shared_ptr<Z> >("Z", init<int>())
.def("value", &Z::value)
.def("set", &Z::set)
;