summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/gras_impl/output_buffer_queues.hpp4
1 files changed, 2 insertions, 2 deletions
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;