From 6bc82e437ad2d036c058c21662b6a56d695fc5d1 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 4 May 2020 09:53:07 +0200 Subject: [PATCH] Add module frame to FastQueue --- core-buffer/src/FastQueue.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core-buffer/src/FastQueue.cpp b/core-buffer/src/FastQueue.cpp index 3e9765f..e39ecc4 100644 --- a/core-buffer/src/FastQueue.cpp +++ b/core-buffer/src/FastQueue.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "FastQueue.hpp" using namespace std; @@ -102,4 +103,5 @@ void FastQueue::release() read_slot_id_ %= n_slots_; } -template class FastQueue; \ No newline at end of file +template class FastQueue; +template class FastQueue; \ No newline at end of file