Clean up and formatting

This commit is contained in:
Maschell
2020-12-26 14:17:50 +01:00
parent 0467178650
commit e9bd4651ca
30 changed files with 283 additions and 325 deletions

View File

@@ -28,15 +28,13 @@ public:
this->type = type;
}
~HookData() {
~HookData() = default;
}
void *getFunctionPointer() const {
[[nodiscard]] void *getFunctionPointer() const {
return function_pointer;
}
wups_loader_hook_type_t getType() const {
[[nodiscard]] wups_loader_hook_type_t getType() const {
return this->type;
}