From 2102108b1a62c0e30f86e2ceada7d8be03603923 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Fri, 16 May 2025 21:09:52 +0200 Subject: UnitTests: Remove redundant template type specifers --- Source/UnitTests/Common/BlockingLoopTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Source/UnitTests/Common/BlockingLoopTest.cpp') diff --git a/Source/UnitTests/Common/BlockingLoopTest.cpp b/Source/UnitTests/Common/BlockingLoopTest.cpp index e677544f66..4d8856b94e 100644 --- a/Source/UnitTests/Common/BlockingLoopTest.cpp +++ b/Source/UnitTests/Common/BlockingLoopTest.cpp @@ -11,10 +11,10 @@ TEST(BlockingLoop, MultiThreaded) { Common::BlockingLoop loop; - std::atomic signaled_a(0); - std::atomic received_a(0); - std::atomic signaled_b(0); - std::atomic received_b(0); + std::atomic signaled_a(0); + std::atomic received_a(0); + std::atomic signaled_b(0); + std::atomic received_b(0); for (int i = 0; i < 100; i++) { // Invalidate the current state. -- cgit v1.2.3