Another fix in DynamicFIFO

This commit is contained in:
Steffen Gaisser 2020-09-07 15:49:28 +02:00
parent 2a28114b49
commit 278053a342
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ public:
*/
DynamicFIFO(const DynamicFIFO& other): FIFOBase<T>(other),
fifoVector(other.maxCapacity) {
this->fifoVector = other.fifoVector;
this->setContainer(fifoVector.data());
}