summaryrefslogtreecommitdiff
path: root/src/u.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2026-04-28 22:42:48 +0200
committerJoel Klinghed <the_jk@spawned.biz>2026-04-28 22:43:08 +0200
commit665bb6a5202ad0ca30e60bec338ca65853c1b131 (patch)
tree4d938a3f1bc3160ac065d9a437f2c1b6eb724864 /src/u.hh
parent2f43e9123dc406112d0802a82698cd124f42a794 (diff)
Make clang-tidy happy
Diffstat (limited to 'src/u.hh')
-rw-r--r--src/u.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/u.hh b/src/u.hh
index 524b2ff..4e037de 100644
--- a/src/u.hh
+++ b/src/u.hh
@@ -16,6 +16,7 @@ enum class ReadErrorReplace : uint8_t {
Incomplete, // Too few bytes
};
+// NOLINTBEGIN(readability-enum-initial-value)
enum class Version : uint8_t {
u6_2_0,
u8_0_0,
@@ -29,6 +30,7 @@ enum class Version : uint8_t {
u16_0_0,
LATEST = u16_0_0,
};
+// NOLINTEND(readability-enum-initial-value)
GeneralCategory lookup_gc(uint32_t code, Version version = Version::LATEST);