From 0709bd664af7a052f2fb7dae2b04e37afed8fdde Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Thu, 28 Apr 2016 20:45:58 +0200 Subject: Change remaining std::auto_ptr usage to std::unique_ptr Test-Information: Builds and tests pass on Ubuntu 16.04. Change-Id: If8da50619b0e029437b3b9d6b146f2ed49b5bf60 diff --git a/SwifTools/Idle/UnitTest/ActualIdleDetectorTest.cpp b/SwifTools/Idle/UnitTest/ActualIdleDetectorTest.cpp index 8e4177e..fa9b184 100644 --- a/SwifTools/Idle/UnitTest/ActualIdleDetectorTest.cpp +++ b/SwifTools/Idle/UnitTest/ActualIdleDetectorTest.cpp @@ -4,12 +4,13 @@ * See the COPYING file for more information. */ +#include + #include #include #include -#include #include #include @@ -51,7 +52,7 @@ class ActualIdleDetectorTest : public CppUnit::TestFixture { } void testHandleTick_Idle() { - std::auto_ptr testling(createDetector()); + std::unique_ptr testling(createDetector()); testling->setIdleTimeSeconds(15); querier->idleTime = 15; @@ -62,7 +63,7 @@ class ActualIdleDetectorTest : public CppUnit::TestFixture { } void testHandleTick_Idle_AlreadyIdle() { - std::auto_ptr testling(createDetector()); + std::unique_ptr testling(createDetector()); testling->setIdleTimeSeconds(15); querier->idleTime = 15; timerFactory->updateTime(15000); @@ -75,7 +76,7 @@ class ActualIdleDetectorTest : public CppUnit::TestFixture { } void testHandleTick_NotIdle() { - std::auto_ptr testling(createDetector()); + std::unique_ptr testling(createDetector()); testling->setIdleTimeSeconds(15); querier->idleTime = 15; timerFactory->updateTime(15000); @@ -89,7 +90,7 @@ class ActualIdleDetectorTest : public CppUnit::TestFixture { } void testHandleTick_NotIdle_AlreadyNotIdle() { - std::auto_ptr testling(createDetector()); + std::unique_ptr testling(createDetector()); testling->setIdleTimeSeconds(15); querier->idleTime = 5; @@ -150,7 +151,7 @@ class ActualIdleDetectorTest : public CppUnit::TestFixture { MockTimerFactory() {} void updateTime(int milliseconds) { - foreach(std::shared_ptr timer, timers) { + for (std::shared_ptr timer : timers) { timer->updateTime(milliseconds); } } diff --git a/Swiften/QA/StorageTest/VCardFileStorageTest.cpp b/Swiften/QA/StorageTest/VCardFileStorageTest.cpp index 0dae2f3..1be2490 100644 --- a/Swiften/QA/StorageTest/VCardFileStorageTest.cpp +++ b/Swiften/QA/StorageTest/VCardFileStorageTest.cpp @@ -4,6 +4,7 @@ * See the COPYING file for more information. */ +#include #include #include @@ -57,7 +58,7 @@ class VCardFileStorageTest : public CppUnit::TestFixture { } void testSetVCard_LargeFilename() { - std::auto_ptr testling(createTestling()); + std::unique_ptr testling(createTestling()); VCard::ref vcard(new VCard()); vcard->setFullName("Alice In Wonderland"); @@ -83,7 +84,7 @@ class VCardFileStorageTest : public CppUnit::TestFixture { } void testGetVCard_LargeFilename() { - std::auto_ptr testling(createTestling()); + std::unique_ptr testling(createTestling()); VCard::ref vcard(new VCard()); vcard->setFullName("Alice In Wonderland"); -- cgit v0.10.2-6-g49f6