fix Loader::userTriedToLoadDLLs definition on mac & ios

This commit is contained in:
HJfod 2023-01-24 10:37:02 +02:00
parent ec28634c26
commit 57fd2c25c2
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ void Loader::Impl::setupIPC() {
log::warning("IPC is not supported on this platform");
}
std::optional<std::vector<std::string>> Loader::Impl::userTriedToLoadDLLs() const {
bool Loader::Impl::userTriedToLoadDLLs() const {
return std::nullopt;
}

View file

@ -64,7 +64,7 @@ void Loader::Impl::setupIPC() {
log::debug("IPC set up");
}
std::optional<std::vector<std::string>> Loader::Impl::userTriedToLoadDLLs() const {
bool Loader::Impl::userTriedToLoadDLLs() const {
return std::nullopt;
}