You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like there is a missing library of some kind.
src/Recorder.cpp:672:34: error: 'struct rack::engine::Engine' has no member named 'getPrimaryModule'
672 | if (APP->engine->getPrimaryModule() == this) {
| ^~~~~~~~~~~~~~~~
src/Recorder.cpp: In member function 'void Recorder::setPrimary()':
src/Recorder.cpp:987:30: error: 'struct rack::engine::Engine' has no member named 'setPrimaryModule'
987 | APP->engine->setPrimaryModule(this);
| ^~~~~~~~~~~~~~~~
src/Recorder.cpp: In member function 'bool Recorder::isPrimary()':
src/Recorder.cpp:991:37: error: 'struct rack::engine::Engine' has no member named 'getPrimaryModule'
991 | return APP->engine->getPrimaryModule() == this;
| ^~~~~~~~~~~~~~~~
src/Recorder.cpp: In member function 'virtual void RecorderWidget::appendContextMenu(rack::ui::Menu*)':
src/Recorder.cpp:1112:51: error: no matching function for call to 'createCheckMenuItem(std::string, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>)'
1112 | menu->addChild(createCheckMenuItem((path != "") ? path : "Select...",
| ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1113 | [=]() {return module->isPrimary();},
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1114 | [=]() {selectPath(module);}
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~
1115 | ));
| ~
...
src/Recorder.cpp:1117:53: error: no matching function for call to 'createBoolPtrMenuItem(const char [24], bool*)'
1117 | menu->addChild(createBoolPtrMenuItem("Append -001, -002, etc.", &module->incrementPath));
| ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...
src/Recorder.cpp:1124:59: error: no matching function for call to 'createCheckMenuItem(std::__cxx11::basic_string<char>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>)'
1124 | menu->addChild(createCheckMenuItem(fi.name + " (." + fi.extension + ")",
| ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1125 | [=]() {return format == module->format;},
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1126 | [=]() {module->setFormat(format);}
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1127 | ));
| ~
...
src/Recorder.cpp:1135:59: error: no matching function for call to 'createCheckMenuItem(std::__cxx11::basic_string<char>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda()>)'
1135 | menu->addChild(createCheckMenuItem(fi.name + " (." + fi.extension + ")",
| ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1136 | [=]() {return format == module->format;},
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1137 | [=]() {module->setFormat(format);}
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1138 | ));
|
...
src/Recorder.cpp: In lambda function:
src/Recorder.cpp:1147:75: error: no matching function for call to 'createCheckMenuItem(std::string, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda(rack::ui::Menu*)>::<lambda()>, RecorderWidget::appendContextMenu(rack::ui::Menu*)::<lambda(rack::ui::Menu*)>::<lambda()>)'
1147 | menu->addChild(createCheckMenuItem(string::f("%g kHz", sampleRate / 1000.0),
| ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1148 | [=]() {return module->sampleRate == sampleRate;},
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1149 | [=]() {module->setSampleRate(sampleRate); DEBUG("%d", sampleRate);}
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1150 | ));
| ~
It seems like there is a missing library of some kind.
...
...
...
...
...
...
...
...
...
...
The text was updated successfully, but these errors were encountered: