From c04e9a6d74f1c7b66a7efd816f857a6a9029c192 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 15 Apr 2013 19:30:53 -0700 Subject: gras: forgotten change from last commit --- lib/gras_impl/output_buffer_queues.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/gras_impl') diff --git a/lib/gras_impl/output_buffer_queues.hpp b/lib/gras_impl/output_buffer_queues.hpp index 08869fd..deea0e1 100644 --- a/lib/gras_impl/output_buffer_queues.hpp +++ b/lib/gras_impl/output_buffer_queues.hpp @@ -35,7 +35,7 @@ struct OutputBufferQueues GRAS_FORCE_INLINE void push(const size_t i, const SBuffer &buff) { - if GRAS_UNLIKELY(not _queues[i]) return; //block is likely done, throw out buffer + if (not _queues[i]) return; //block is likely done, throw out buffer _queues[i]->push(buff); _update(i); } @@ -88,7 +88,7 @@ struct OutputBufferQueues GRAS_FORCE_INLINE void _update(const size_t i) { - if GRAS_UNLIKELY(not _queues[i] or _queues[i]->empty()) + if (not _queues[i] or _queues[i]->empty()) { _bitset.reset(i); return; -- cgit