2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 08:02:38 +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

@@ -17,7 +17,7 @@ typedef test_class<> X;
X* empty() { return new X(1000); }
std::auto_ptr<X> sum(int a, int b) { return std::auto_ptr<X>(new X(a+b)); }
std::shared_ptr<X> sum(int a, int b) { return std::shared_ptr<X>(new X(a+b)); }
boost::shared_ptr<X> product(int a, int b, int c)
{