summaryrefslogtreecommitdiff
path: root/src/u.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-09-10 22:11:27 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-09-10 22:11:27 +0200
commitcf99d0c865474105c14b2348fdbd1c83d87d5a29 (patch)
treee7317307b2e4f7abd4db5fde06fbd380f43553ab /src/u.hh
parentf0ba930314e05c8d949ce92ffbda41fdb133198a (diff)
fixup! Make clang-tidy happy
Diffstat (limited to 'src/u.hh')
-rw-r--r--src/u.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/u.hh b/src/u.hh
index 583b67b..101dec8 100644
--- a/src/u.hh
+++ b/src/u.hh
@@ -3,13 +3,13 @@
namespace u {
-enum class ReadError {
+enum class ReadError : uint8_t {
Invalid, // Invalid sequence
End, // At end (it == end)
Incomplete, // Too few bytes
};
-enum class ReadErrorReplace {
+enum class ReadErrorReplace : uint8_t {
End, // At end (it == end)
Incomplete, // Too few bytes
};