fix optimized unused variable warning

This commit is contained in:
Paul Davis 2022-06-21 18:37:43 -06:00
parent 0e1f62e605
commit 168b540959

View File

@ -223,11 +223,14 @@ MidiRingBuffer<T>::flush (samplepos_t /*start*/, samplepos_t end)
while (this->read_space() >= prefix_size) {
uint8_t peekbuf[prefix_size];
bool success;
uint32_t ev_size;
T ev_time;
success = this->peek (peekbuf, prefix_size);
#ifndef NDEBUG
bool success =
#endif
this->peek (peekbuf, prefix_size);
/* this cannot fail, because we've already verified that there
is prefix_space to read
*/