Replace std::auto_ptr with std::unique_ptr #619

This commit is contained in:
Alex Fabijanic
2017-10-10 18:17:49 -05:00
parent ad1b75b30e
commit 726bcc9202
4 changed files with 6 additions and 10 deletions

View File

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