diff options
author | Josh Blum | 2012-11-06 01:38:42 -0800 |
---|---|---|
committer | Josh Blum | 2012-11-06 01:38:42 -0800 |
commit | 4cec45599e1daf81db5aae72c15e005883f59088 (patch) | |
tree | 3a94d62c3c60618a2136c3f3addb2598c57afc98 /lib | |
parent | bf7ac68a7bb91bbef8bd74f59df3ee1908d87ca8 (diff) | |
download | sandhi-4cec45599e1daf81db5aae72c15e005883f59088.tar.gz sandhi-4cec45599e1daf81db5aae72c15e005883f59088.tar.bz2 sandhi-4cec45599e1daf81db5aae72c15e005883f59088.zip |
work on python blocks and unit test
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gras_impl/output_buffer_queues.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gras_impl/output_buffer_queues.hpp b/lib/gras_impl/output_buffer_queues.hpp index d876aa7..6777fe2 100644 --- a/lib/gras_impl/output_buffer_queues.hpp +++ b/lib/gras_impl/output_buffer_queues.hpp @@ -59,6 +59,7 @@ struct OutputBufferQueues GRAS_FORCE_INLINE T &front(const size_t i) { + ASSERT(not _queues[i].empty()); return _queues[i].front(); } |