Fix up DEBUG_VERBOSE

This commit is contained in:
2024-10-30 14:50:34 -07:00
parent 7e1bcbf9be
commit 051bfb05fe
2 changed files with 21 additions and 9 deletions

View File

@@ -609,7 +609,7 @@ inline std::string printable(const Key &key) {
return printable(std::string_view((const char *)key.p, key.len));
}
inline std::string printable(std::span<const uint8_t> key) {
inline std::string printable(TrivialSpan key) {
return printable(std::string_view((const char *)key.data(), key.size()));
}