diff options
author | Josh Blum | 2013-04-15 19:30:53 -0700 |
---|---|---|
committer | Josh Blum | 2013-04-15 19:30:53 -0700 |
commit | c04e9a6d74f1c7b66a7efd816f857a6a9029c192 (patch) | |
tree | 0b196ef2a4915e0ca0ef1f3842a3ff9715c357f0 /lib/gras_impl | |
parent | 26a0d8931830d7723f568d1bf8876b0a205e234d (diff) | |
download | sandhi-c04e9a6d74f1c7b66a7efd816f857a6a9029c192.tar.gz sandhi-c04e9a6d74f1c7b66a7efd816f857a6a9029c192.tar.bz2 sandhi-c04e9a6d74f1c7b66a7efd816f857a6a9029c192.zip |
gras: forgotten change from last commit
Diffstat (limited to 'lib/gras_impl')
-rw-r--r-- | lib/gras_impl/output_buffer_queues.hpp | 4 |
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; |