From 9e495f59e5ced8626f44ad51818fb74926aedc91 Mon Sep 17 00:00:00 2001 From: Tobias Schuele Date: Wed, 8 Oct 2014 22:34:29 +0200 Subject: [PATCH] Resolved Clang warning about comparison of unsigned and signed int. --- containers_cpp/test/queue_test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers_cpp/test/queue_test.h b/containers_cpp/test/queue_test.h index 69a3a87..c405b05 100644 --- a/containers_cpp/test/queue_test.h +++ b/containers_cpp/test/queue_test.h @@ -40,8 +40,8 @@ template class QueueTest : public partest::TestCase { private: - static const unsigned int QUEUE_SIZE = 100; - static const unsigned int TOTAL_PRODUCE_CONSUME_COUNT = 10000; + static const int QUEUE_SIZE = 100; + static const int TOTAL_PRODUCE_CONSUME_COUNT = 10000; int n_threads; embb::base::Atomic thread_selector_producer; embb::base::Atomic produce_count; -- libgit2 0.26.0