diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-05-18 02:12:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-18 02:12:45 -0500 |
| commit | 2e22a3cf425caae0a3cb52cc4deca7008209955f (patch) | |
| tree | 558307be915d9708eaae615380e187044d0dd83d /Source/UnitTests/Common/BlockingLoopTest.cpp | |
| parent | 88005deaeb26c3bcb4205ca08f93bfdc3b9088db (diff) | |
| parent | 2102108b1a62c0e30f86e2ceada7d8be03603923 (diff) | |
Merge pull request #13672 from tygyh/UnitTests/Remove-redundant-template-type-specifiers
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. |
