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()); }