mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
AK: Decorate AK::TriState with [[nodiscard]]
TriState is another type of return code, it's value should always be observed.
This commit is contained in:
parent
3319803bd9
commit
adb83d3adc
Notes:
sideshowbarker
2024-07-19 04:16:10 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/adb83d3adc6 Pull-request: https://github.com/SerenityOS/serenity/pull/3010
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue