From efb6022ebafa9914ff4922a425b2785fb1a6c0f1 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 2 Feb 2014 00:08:30 +0200 Subject: [PATCH] fix --- include/c11log/details/blocking_queue.h | 1 - src/test.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/c11log/details/blocking_queue.h b/include/c11log/details/blocking_queue.h index f15fde62..8b44dfeb 100644 --- a/include/c11log/details/blocking_queue.h +++ b/include/c11log/details/blocking_queue.h @@ -4,7 +4,6 @@ // A blocking multi-consumer/multi-producer thread safe queue. // Has max capacity and supports timeout on push or pop operations. -#include #include #include #include diff --git a/src/test.cpp b/src/test.cpp index c8c6f44e..54e480b5 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -70,8 +70,8 @@ void popper(Q* q) string output; while(active) { - //q->pop(output); q->clear(); + //q->pop(output); ++pop_count; } }