From 0e35f1bb18b71fcb936b3a00e6bda0fa82a0b59c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 21 Nov 2018 18:30:58 -0500 Subject: kernel/handle_table: Move private static functions into the cpp file These don't depend on class state, and are effectively implementation details, so they can go into the cpp file . --- src/core/hle/kernel/handle_table.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/core/hle/kernel/handle_table.h') diff --git a/src/core/hle/kernel/handle_table.h b/src/core/hle/kernel/handle_table.h index ae3116afc..e3f3e3fb8 100644 --- a/src/core/hle/kernel/handle_table.h +++ b/src/core/hle/kernel/handle_table.h @@ -93,13 +93,6 @@ private: /// This is the maximum limit of handles allowed per process in Horizon static constexpr std::size_t MAX_COUNT = 1024; - static u16 GetSlot(Handle handle) { - return handle >> 15; - } - static u16 GetGeneration(Handle handle) { - return handle & 0x7FFF; - } - /// Stores the Object referenced by the handle or null if the slot is empty. std::array, MAX_COUNT> objects; -- cgit v1.2.3