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

Use std::unique_ptr instead of std::auto_ptr

This commit is contained in:
Stefan Seefeld
2016-09-01 20:56:06 -04:00
parent 63e3079a16
commit 5029273ca8
7 changed files with 76 additions and 13 deletions

View File

@@ -44,8 +44,6 @@ for test in [('injected',),
('polymorphism',),
('polymorphism2',),
('wrapper_held_type',),
('polymorphism2_auto_ptr',),
('auto_ptr',),
('minimal',),
('args',),
('raw_ctor',),
@@ -94,6 +92,18 @@ for test in [('injected',),
('pointer_vector',)]:
tests+=env.BPLTest(*test)
if env['CXX11']:
for test in [
]:
tests+=env.BPLTest(*test)
else:
for test in [
('polymorphism2_auto_ptr',),
('auto_ptr',),
]:
tests+=env.BPLTest(*test)
test = env.BoostRunPythonScript('test_builtin_converters.py')
Depends(
test,