aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/BufferManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/BufferManager.hpp')
-rw-r--r--src/profiling/BufferManager.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/profiling/BufferManager.hpp b/src/profiling/BufferManager.hpp
index d678cd3ec0..f4e63dab11 100644
--- a/src/profiling/BufferManager.hpp
+++ b/src/profiling/BufferManager.hpp
@@ -11,6 +11,7 @@
#include <condition_variable>
#include <mutex>
#include <vector>
+#include <queue>
namespace armnn
{
@@ -56,7 +57,7 @@ private:
std::vector<IPacketBufferPtr> m_AvailableList;
// List of readable packet buffers
- std::vector<IPacketBufferPtr> m_ReadableList;
+ std::queue<IPacketBufferPtr> m_ReadableList;
// Mutex for available packet buffer list
std::mutex m_AvailableMutex;