Просмотр исходного кода

fixed warning: ISO C++ forbids compound-literals

Josef Pavlik 8 лет назад
Родитель
Сommit
dca50737f5
1 измененных файлов: 2 добавлений и 1 удалений
  1. 2
    1
      Marlin/buzzer.h

+ 2
- 1
Marlin/buzzer.h Просмотреть файл

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

Загрузка…
Отмена
Сохранить