util/DynamicFifoBuffer: use `T` instead of `std::byte`

Mistake added by commit b528b467649754
This commit is contained in:
Max Kellermann 2023-05-23 10:57:10 +02:00 committed by Max Kellermann
parent 082f72dd20
commit 62ee9a4d60
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public:
/**
* Append data to the buffer, growing it as needed.
*/
void Append(std::span<const std::byte> src) noexcept {
void Append(std::span<const T> src) noexcept {
std::copy(src.begin(), src.end(), Write(src.size()));
Append(src.size());
}