mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 15:29:55 +00:00
Fix bug on memorystream
This commit is contained in:
parent
7f3058d501
commit
fe13fa850e
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ namespace Bsa
|
|||
|
||||
Memory buffer is freed once the class instance is destroyed.
|
||||
*/
|
||||
class MemoryInputStream : private std::vector<char>, public virtual Files::MemBuf, public std::istream {
|
||||
class MemoryInputStream : private std::vector<char>, public Files::MemBuf, public std::istream {
|
||||
public:
|
||||
explicit MemoryInputStream(size_t bufferSize)
|
||||
: std::vector<char>(bufferSize)
|
||||
|
|
Loading…
Reference in a new issue