diff --git a/AK/Types.h b/AK/Types.h index 02e5fca1ee0..be93bedd63f 100644 --- a/AK/Types.h +++ b/AK/Types.h @@ -72,3 +72,5 @@ static_assert(explode_byte(0xff) == 0xffffffff); static_assert(explode_byte(0x80) == 0x80808080); static_assert(explode_byte(0x7f) == 0x7f7f7f7f); static_assert(explode_byte(0) == 0); + +enum class TriState : u8 { False, True, Unknown };