diff options
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Types.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/AK/Types.h b/AK/Types.h index 5575be3e09..58bb08cfe5 100644 --- a/AK/Types.h +++ b/AK/Types.h @@ -62,8 +62,8 @@ typedef i64 int64_t; typedef int pid_t; #else -# include <stdint.h> # include <stddef.h> +# include <stdint.h> # include <sys/types.h> # ifdef __ptrdiff_t @@ -97,6 +97,8 @@ inline constexpr size_t align_up_to(const size_t value, const size_t alignment) return (value + (alignment - 1)) & ~(alignment - 1); } -enum class TriState : u8 { False, +enum class [[nodiscard]] TriState : u8 { + False, True, - Unknown }; + Unknown +}; |