From 4bda751f76be8e0028977ee918c9ba649bcf6d2d Mon Sep 17 00:00:00 2001 From: Green Sky Date: Mon, 27 May 2024 11:21:40 +0200 Subject: [PATCH] missed a line --- solanaceae/file/file2.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/solanaceae/file/file2.hpp b/solanaceae/file/file2.hpp index eaa9d3b..0d238e6 100644 --- a/solanaceae/file/file2.hpp +++ b/solanaceae/file/file2.hpp @@ -43,7 +43,6 @@ struct File2I { // pos -1 means stream, append to last written, or read position (independent, like FILE*s) virtual bool write(const ByteSpan data, int64_t pos = -1) = 0; - //[[nodiscard]] virtual std::variant> read(uint64_t size, int64_t pos = -1) = 0; [[nodiscard]] virtual ByteSpanWithOwnership read(uint64_t size, int64_t pos = -1) = 0; };