diff --git a/src/Utils/Library.hpp b/src/Utils/Library.hpp index 552c91e2..3ef0db41 100644 --- a/src/Utils/Library.hpp +++ b/src/Utils/Library.hpp @@ -10,7 +10,7 @@ namespace Utils static Library GetByAddress(void* address); Library() : _module(nullptr), freeOnDestroy(false) {}; - explicit Library(const std::string& name, bool freeOnDestroy); + Library(const std::string& name, bool freeOnDestroy); explicit Library(const std::string& name) : _module(GetModuleHandleA(name.data())), freeOnDestroy(true) {}; explicit Library(HMODULE handle); ~Library();