diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-09-10 22:11:27 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-09-10 22:11:27 +0200 |
| commit | cf99d0c865474105c14b2348fdbd1c83d87d5a29 (patch) | |
| tree | e7317307b2e4f7abd4db5fde06fbd380f43553ab /src/umod8.hh | |
| parent | f0ba930314e05c8d949ce92ffbda41fdb133198a (diff) | |
fixup! Make clang-tidy happy
Diffstat (limited to 'src/umod8.hh')
| -rw-r--r-- | src/umod8.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/umod8.hh b/src/umod8.hh index 14406c4..117591f 100644 --- a/src/umod8.hh +++ b/src/umod8.hh @@ -1,12 +1,13 @@ #ifndef UMOD8_HH #define UMOD8_HH +#include "u.hh" // IWYU pragma: export + #include <cstdint> // IWYU pragma: export #include <expected> #include <iterator> #include <type_traits> - -#include "u.hh" // IWYU pragma: export +#include <utility> namespace umod8 { @@ -124,6 +125,7 @@ std::expected<uint32_t, u::ReadErrorReplace> read_replace(T& start, case u::ReadError::Invalid: return 0xfffd; } + std::unreachable(); } template<std::forward_iterator T> |
