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:
root
2016-10-14 11:49:45 +02:00
parent 12fc175b5a
commit 895c3dfcd5
5 changed files with 20 additions and 0 deletions

View File

@@ -81,7 +81,11 @@ protected:
private:
TestMethod _test;
#if __cplusplus < 201103L
std::auto_ptr<Fixture> _fixture;
#else
std::unique_ptr<Fixture> _fixture;
#endif
};