diff options
author | jade <lix@jade.fyi> | 2024-03-31 15:38:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix> | 2024-03-31 15:38:48 +0000 |
commit | 73507a716761241ca38d35fb6a873c43967c8139 (patch) | |
tree | 3e05db96d19a6c0fd683357cfff269be8a0e42d5 /tests/unit/libutil-support | |
parent | 6165f210742d74dc7d74b011cc6f782d59c2f407 (diff) | |
parent | 194a1b91af6d8848e4cc0dfbdcc153ee2dbed140 (diff) |
Merge changes Ib62d3d68,Ic3e7affe into main
* changes:
Make things that can throw not noexcept anymore
Fix various clang-tidy lints
Diffstat (limited to 'tests/unit/libutil-support')
-rw-r--r-- | tests/unit/libutil-support/tests/terminal-code-eater.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/libutil-support/tests/terminal-code-eater.cc b/tests/unit/libutil-support/tests/terminal-code-eater.cc index ad05ed1f6..6e108009a 100644 --- a/tests/unit/libutil-support/tests/terminal-code-eater.cc +++ b/tests/unit/libutil-support/tests/terminal-code-eater.cc @@ -26,6 +26,7 @@ void TerminalCodeEater::feed(char c, std::function<void(char)> on_char) // Just eat \r, since it is part of clearing a line case '\r': return; + default: break; } if constexpr (DEBUG_EATER) { std::cerr << "eater uneat" << MaybeHexEscapedChar{c} << "\n"; |