mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
fix Loader::userTriedToLoadDLLs definition on mac & ios
This commit is contained in:
parent
ec28634c26
commit
57fd2c25c2
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ void Loader::Impl::setupIPC() {
|
||||||
log::warning("IPC is not supported on this platform");
|
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;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@ void Loader::Impl::setupIPC() {
|
||||||
log::debug("IPC set up");
|
log::debug("IPC set up");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::optional<std::vector<std::string>> Loader::Impl::userTriedToLoadDLLs() const {
|
bool Loader::Impl::userTriedToLoadDLLs() const {
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue