From b3dfe5332cd345c7f33b8a3828649122145f7a12 Mon Sep 17 00:00:00 2001 From: Loïc Blot Date: Tue, 6 Jun 2017 14:34:14 +0200 Subject: C++11 patchset 3: remove Atomic/GenericAtomic and use std::atomic (#5906) --- src/unittest/test_threading.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/unittest') diff --git a/src/unittest/test_threading.cpp b/src/unittest/test_threading.cpp index e1e1d3660..03d776539 100644 --- a/src/unittest/test_threading.cpp +++ b/src/unittest/test_threading.cpp @@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "test.h" -#include "threading/atomic.h" +#include #include "threading/semaphore.h" #include "threading/thread.h" @@ -137,7 +137,7 @@ void TestThreading::testThreadKill() class AtomicTestThread : public Thread { public: - AtomicTestThread(Atomic &v, Semaphore &trigger) : + AtomicTestThread(std::atomic &v, Semaphore &trigger) : Thread("AtomicTest"), val(v), trigger(trigger) @@ -153,14 +153,14 @@ private: return NULL; } - Atomic &val; + std::atomic &val; Semaphore &trigger; }; void TestThreading::testAtomicSemaphoreThread() { - Atomic val; + std::atomic val; val = 0; Semaphore trigger; static const u8 num_threads = 4; -- cgit v1.2.3