use size_t instead of int for overrun counter

This commit is contained in:
Luiz Siqueira
2018-08-14 09:21:52 -03:00
parent 863f704f47
commit c543985cf4
4 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ TEST_CASE("basic async test ", "[async]")
{
using namespace spdlog;
auto test_sink = std::make_shared<sinks::test_sink_mt>();
int overrun_counter = 0;
size_t overrun_counter = 0;
size_t queue_size = 128;
size_t messages = 256;
{