mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
use std::unique_ptr instead of std::auto_ptr with C++11+ compilers to prevent std::auto_ptr deprecation warnings
This commit is contained in:
@@ -81,7 +81,11 @@ protected:
|
||||
|
||||
private:
|
||||
TestMethod _test;
|
||||
#if __cplusplus < 201103L
|
||||
std::auto_ptr<Fixture> _fixture;
|
||||
#else
|
||||
std::unique_ptr<Fixture> _fixture;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user