Skip to content
Snippets Groups Projects
Commit 0220862b authored by Lioncash's avatar Lioncash
Browse files

kernel/handle_table: Resolve truncation warnings

Avoids implicit truncation warnings from u32 -> u16 (the truncation is
desirable behavior here).
parent c07987df
No related branches found
No related tags found
No related merge requests found
......@@ -14,11 +14,11 @@
namespace Kernel {
namespace {
constexpr u16 GetSlot(Handle handle) {
return handle >> 15;
return static_cast<u16>(handle >> 15);
}
constexpr u16 GetGeneration(Handle handle) {
return handle & 0x7FFF;
return static_cast<u16>(handle & 0x7FFF);
}
} // Anonymous namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment