From fe13fa850ecffd20b21bf5ab943aaa6d8ce4d93a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Mocquillon?= Date: Sat, 26 Feb 2022 14:30:06 +0100 Subject: [PATCH] Fix bug on memorystream --- components/bsa/memorystream.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bsa/memorystream.hpp b/components/bsa/memorystream.hpp index 5aae448299..0b7e0da9e2 100644 --- a/components/bsa/memorystream.hpp +++ b/components/bsa/memorystream.hpp @@ -40,7 +40,7 @@ namespace Bsa Memory buffer is freed once the class instance is destroyed. */ -class MemoryInputStream : private std::vector, public virtual Files::MemBuf, public std::istream { +class MemoryInputStream : private std::vector, public Files::MemBuf, public std::istream { public: explicit MemoryInputStream(size_t bufferSize) : std::vector(bufferSize)