fix userTriedToLoadDLLs return value

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

View file

@ -33,7 +33,7 @@ void Loader::Impl::setupIPC() {
}
bool Loader::Impl::userTriedToLoadDLLs() const {
return std::nullopt;
return false;
}
#endif

View file

@ -65,7 +65,7 @@ void Loader::Impl::setupIPC() {
}
bool Loader::Impl::userTriedToLoadDLLs() const {
return std::nullopt;
return false;
}
#endif