fixed warning: ISO C++ forbids compound-literals

This commit is contained in:
Josef Pavlik 2016-10-13 18:16:46 +02:00 committed by Scott Lahteine
parent 0bd66807b2
commit dca50737f5

View File

@ -109,7 +109,8 @@ class Buzzer {
this->tick();
thermalManager.manage_heater();
}
this->buffer.enqueue((tone_t) { duration, frequency });
tone_t tone = { duration, frequency };
this->buffer.enqueue(tone);
}
/**