kern: fix debug build for [[nodiscard]] changes

This commit is contained in:
Michael Scire
2025-11-12 17:32:43 -07:00
parent 3c209d46e6
commit bd909f7272
5 changed files with 5 additions and 9 deletions

View File

@@ -17,7 +17,7 @@
namespace ams::kern {
Result KHandleTable::Finalize() {
void KHandleTable::Finalize() {
MESOSPHERE_ASSERT_THIS();
/* Get the table and clear our record of it. */
@@ -35,8 +35,6 @@ namespace ams::kern {
obj->Close();
}
}
R_SUCCEED();
}
bool KHandleTable::Remove(ams::svc::Handle handle) {