Fix build error

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-09-04 17:13:09 +01:00
parent 2491b28fcd
commit e46715bbc3

View File

@@ -154,7 +154,7 @@ private:
// Batching members
mutable std::mutex batchMutex_;
static constexpr size_t BATCH_BUFFER_SIZE = 64 * 1024; // 64KB buffer
std::array<char, BATCH_BUFFER_SIZE> batchBuffer_;
std::array<char, BATCH_BUFFER_SIZE> batchBuffer_{};
std::span<char> writeBuffer_; // Points to available write space
std::span<char> readBuffer_; // Points to data ready to flush
std::chrono::steady_clock::time_point lastFlush_ =