From 15e4fdf200920c990f3cc271143f43919cd6f27c Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 25 Feb 2020 16:34:15 +0100 Subject: Replace new/delete in ZMQ input by vector --- src/input/Zmq.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/input/Zmq.h') diff --git a/src/input/Zmq.h b/src/input/Zmq.h index 2e37b5f..f4992f1 100644 --- a/src/input/Zmq.h +++ b/src/input/Zmq.h @@ -45,6 +45,7 @@ #include #include +#include #include #include "zmq.hpp" #include "input/inputs.h" @@ -212,7 +213,7 @@ class ZmqBase : public InputBase, public RemoteControllable { bool m_enable_input; /* stores elements of type char[] */ - std::list m_frame_buffer; + std::list > m_frame_buffer; dab_input_zmq_config_t m_config; -- cgit v1.2.3