This commit is contained in:
Robin Müller 2020-09-07 15:23:27 +02:00
parent 26cbcdbff0
commit e085deb235
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ public:
* @param other
*/
FIFO(const FIFO& other): FIFOBase<T>(other) {
this->fifoArray = other.fifoArray;
this->setContainer(fifoArray.data());
}