diff options
author | Liam <byteslice@airmail.cc> | 2023-03-07 15:25:12 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-03-13 03:09:09 +0100 |
commit | 9368e17a92815744ffed8db7a0fd638708426879 (patch) | |
tree | 006dfb49277dbb5a899d68b69f9cfd543d349f1a /src/core/hle/kernel/k_debug.h | |
parent | kernel/svc: convert to new style (diff) | |
download | yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar.gz yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar.bz2 yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar.lz yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar.xz yuzu-9368e17a92815744ffed8db7a0fd638708426879.tar.zst yuzu-9368e17a92815744ffed8db7a0fd638708426879.zip |
Diffstat (limited to 'src/core/hle/kernel/k_debug.h')
-rw-r--r-- | src/core/hle/kernel/k_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_debug.h b/src/core/hle/kernel/k_debug.h index e3a0689c8..9ffcf27d1 100644 --- a/src/core/hle/kernel/k_debug.h +++ b/src/core/hle/kernel/k_debug.h @@ -14,7 +14,7 @@ class KDebug final : public KAutoObjectWithSlabHeapAndContainer<KDebug, KAutoObj public: explicit KDebug(KernelCore& kernel_) : KAutoObjectWithSlabHeapAndContainer{kernel_} {} - static void PostDestroy([[maybe_unused]] uintptr_t arg) {} + static void PostDestroy(uintptr_t arg) {} }; } // namespace Kernel |