diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-05-16 21:09:52 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-05-16 21:09:52 +0200 |
| commit | 2102108b1a62c0e30f86e2ceada7d8be03603923 (patch) | |
| tree | 0a1c1e80e5c638104942006c267106a70f96a7ed /Source/UnitTests/Common/BlockingLoopTest.cpp | |
| parent | 404a7c75b24da5842c46988bf19c1d5b330dcca1 (diff) | |
UnitTests: Remove redundant template type specifers
Diffstat (limited to 'Source/UnitTests/Common/BlockingLoopTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/BlockingLoopTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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<int> signaled_a(0); - std::atomic<int> received_a(0); - std::atomic<int> signaled_b(0); - std::atomic<int> 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. |
