yeah, that's why i hate c++

This commit is contained in:
Robin Müller 2024-03-26 15:27:33 +01:00
parent 0bd88a2689
commit a8f8c1496c
1 changed files with 2 additions and 1 deletions

View File

@ -60,5 +60,6 @@ DynamicFIFO<size_t>* SharedRingBuffer::getReceiveSizesFifo() {
if(mg.getLockResult() != returnvalue::OK) {
return mg.getLockResult();
}
return receiveSizesFifo->empty();
empty = receiveSizesFifo->empty();
return returnvalue::OK;
}