util/SpanCast: add ReferenceAsBytes()

This commit is contained in:
Max Kellermann
2023-10-21 13:33:25 +02:00
committed by Max Kellermann
parent 10940da381
commit a073db1e52
3 changed files with 12 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ template<typename T>
static bool
SendT(SocketDescriptor s, const T &buffer) noexcept
{
return Send(s, std::as_bytes(std::span{&buffer, 1}));
return Send(s, ReferenceAsBytes(buffer));
}
static bool