Skip to content

Commit

Permalink
[C++] Fix unused variable warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
denizevrenci committed Oct 23, 2018
1 parent 58f405a commit d4dc49c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,6 @@ TEST(OneToOneRingBufferConcurrentTest, shouldExchangeMessages)
OneToOneRingBuffer ringBuffer(spscAb);

std::atomic<int> countDown(1);
std::atomic<int> publisherId(0);

std::vector<std::thread> threads;

Expand Down
1 change: 0 additions & 1 deletion aeron-driver/src/test/c/aeron_spsc_rb_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ TEST(SpscRbConcurrentTest, shouldExchangeMessages)
ASSERT_EQ(aeron_spsc_rb_init(&rb, spsc_buffer.data(), spsc_buffer.size()), 0);

std::atomic<int> countDown(1);
std::atomic<int> publisherId(0);

std::vector<std::thread> threads;
size_t msgCount = 0;
Expand Down

0 comments on commit d4dc49c

Please sign in to comment.