From b84e8576cad29f6bf7ffccdc9689acb81b33eae5 Mon Sep 17 00:00:00 2001 From: James Smith Date: Thu, 7 Nov 2024 16:15:45 +1100 Subject: [PATCH] remove dummy flush on chunk writer --- cpp/mcap/include/mcap/writer.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpp/mcap/include/mcap/writer.hpp b/cpp/mcap/include/mcap/writer.hpp index a0b3e4781..d090048b1 100644 --- a/cpp/mcap/include/mcap/writer.hpp +++ b/cpp/mcap/include/mcap/writer.hpp @@ -240,10 +240,6 @@ class MCAP_PUBLIC IChunkWriter : public IWritable { */ virtual const std::byte* compressedData() const = 0; - // No-op IWritable::flush() implementation. Chunk writers have no concept of an "underlying - // stream" to flush to. - void flush() override {} - protected: virtual void handleClear() = 0; };