From 7ca8c7d4c3d13ce31873200b12403bb4ea7e4195 Mon Sep 17 00:00:00 2001 From: bdemsky Date: Thu, 17 Dec 2015 01:17:51 -0800 Subject: [PATCH] fix commit that mistakenly happened --- spsc-bugfix/spsc-queue.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/spsc-bugfix/spsc-queue.cc b/spsc-bugfix/spsc-queue.cc index ada08ec..f8528a8 100644 --- a/spsc-bugfix/spsc-queue.cc +++ b/spsc-bugfix/spsc-queue.cc @@ -6,7 +6,6 @@ spsc_queue *q; void thread(unsigned thread_index) { - for (int i = 0; i < 40; i++) { if (0 == thread_index) { q->enqueue(11); @@ -16,7 +15,6 @@ spsc_queue *q; int d = q->dequeue(); RL_ASSERT(11 == d); } - } } int user_main(int argc, char **argv) -- 2.34.1