aboutsummaryrefslogtreecommitdiff
path: root/common/memstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/memstream.h')
-rw-r--r--common/memstream.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/common/memstream.h b/common/memstream.h
index 0cb88b6126..5ba259b842 100644
--- a/common/memstream.h
+++ b/common/memstream.h
@@ -40,7 +40,6 @@ private:
const byte *_ptr;
const uint32 _size;
uint32 _pos;
- byte _encbyte;
DisposeAfterUse::Flag _disposeMemory;
bool _eos;
@@ -56,7 +55,6 @@ public:
_ptr(dataPtr),
_size(dataSize),
_pos(0),
- _encbyte(0),
_disposeMemory(disposeMemory),
_eos(false) {}
@@ -65,8 +63,6 @@ public:
free(const_cast<byte *>(_ptrOrig));
}
- void setEnc(byte value) { _encbyte = value; }
-
uint32 read(void *dataPtr, uint32 dataSize);
bool eos() const { return _eos; }