Commit 9e495f59 by Tobias Schuele

Resolved Clang warning about comparison of unsigned and signed int.

parent 1a2eaf85
......@@ -40,8 +40,8 @@ template<typename Queue_t,
bool MultipleConsumers = false>
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<int> thread_selector_producer;
embb::base::Atomic<int> produce_count;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment