kern: fix warn-errors

This commit is contained in:
Michael Scire
2020-08-20 17:29:10 -07:00
committed by SciresM
parent bb1cdd8c87
commit bb11c57e7d
14 changed files with 25 additions and 12 deletions

View File

@@ -46,7 +46,7 @@ namespace ams::kern {
Result UnmapFromOwner(KProcessAddress address, size_t size);
virtual bool IsInitialized() const override { return this->is_initialized; }
static void PostDestroy(uintptr_t arg) { /* ... */ }
static void PostDestroy(uintptr_t arg) { MESOSPHERE_UNUSED(arg); /* ... */ }
KProcess *GetOwner() const { return this->owner; }
KProcessAddress GetSourceAddress() { return this->address; }