Fixed build on Linux

This commit is contained in:
vpereverzev 2021-09-29 12:14:10 +02:00 committed by pereverzev+v
parent a7f29bad1e
commit ca60bf3f76
2 changed files with 7 additions and 0 deletions

View file

@ -93,3 +93,7 @@ mu::async::Notification MultiInstancesStubProvider::instancesChanged() const
static mu::async::Notification n;
return n;
}
void MultiInstancesStubProvider::quitForAll()
{
}

View file

@ -51,6 +51,9 @@ public:
const std::string& selfID() const override;
std::vector<InstanceMeta> instances() const override;
async::Notification instancesChanged() const override;
// Quit for all
void quitForAll() override;
};
}