diff --git a/core/queue.hh b/core/queue.hh index 6a719f14f4..c9bc0e28b3 100644 --- a/core/queue.hh +++ b/core/queue.hh @@ -5,12 +5,13 @@ #ifndef QUEUE_HH_ #define QUEUE_HH_ +#include "circular_buffer.hh" #include #include template class queue { - std::queue _q; + std::queue> _q; size_t _max; std::experimental::optional> _not_empty; std::experimental::optional> _not_full;