From e085deb2355e68e4456143988964a152ff96134b Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Mon, 7 Sep 2020 15:23:27 +0200 Subject: [PATCH] fifo fix --- container/FIFO.h | 1 + 1 file changed, 1 insertion(+) diff --git a/container/FIFO.h b/container/FIFO.h index 19f763fc..5a66a334 100644 --- a/container/FIFO.h +++ b/container/FIFO.h @@ -25,6 +25,7 @@ public: * @param other */ FIFO(const FIFO& other): FIFOBase(other) { + this->fifoArray = other.fifoArray; this->setContainer(fifoArray.data()); }