mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-18 23:11:48 +00:00
UnitTests: Remove redundant template type specifers
This commit is contained in:
parent
404a7c75b2
commit
2102108b1a
6 changed files with 31 additions and 31 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue