diff options
Diffstat (limited to 'common/memstream.h')
-rw-r--r-- | common/memstream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/memstream.h b/common/memstream.h index f6bf990208..0d7375b6b5 100644 --- a/common/memstream.h +++ b/common/memstream.h @@ -289,8 +289,8 @@ public: return dataSize; } - int32 pos() const { return _pos - _length; } //'read' position in the stream - int32 size() const { return _size; } //that's also 'write' position in the stream, as it's append-only + int32 pos() const { return _pos - _length; } // 'read' position in the stream + int32 size() const { return _size; } // that's also 'write' position in the stream, as it's append-only bool seek(int32, int) { return false; } bool eos() const { return _eos; } void clearErr() { _eos = false; } |