[common] Use U8 for colour of RB-tree instead of integer to save space
All checks were successful
eden-license / license-header (pull_request) Successful in 19s

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-08-09 02:11:52 +01:00 committed by crueter
parent 89d40c6302
commit 4b0518e991

View file

@ -1,3 +1,5 @@
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: 2002 Niels Provos <provos@citi.umich.edu>
// SPDX-License-Identifier: BSD-2-Clause
@ -21,9 +23,11 @@
* The maximum height of a red-black tree is 2lg (n+1).
*/
#include <cstdint>
namespace Common::freebsd {
enum class RBColor {
enum class RBColor : std::uint8_t {
RB_BLACK = 0,
RB_RED = 1,
};