aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2016-07-02 21:19:23 +0200
committerWillem Jan Palenstijn2016-07-02 21:19:23 +0200
commite243147f1ea8715b06312d66c6b48d473feb3cdc (patch)
treebc580990e7b6ac3dd7075f1428fec5c1963a38d3
parent948e4487389f6ae99d4a61e0cf6d995d16e62c82 (diff)
downloadscummvm-rg350-e243147f1ea8715b06312d66c6b48d473feb3cdc.tar.gz
scummvm-rg350-e243147f1ea8715b06312d66c6b48d473feb3cdc.tar.bz2
scummvm-rg350-e243147f1ea8715b06312d66c6b48d473feb3cdc.zip
COMMON: Make MemoryWriteStreamDynamic private members protected
-rw-r--r--common/memstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memstream.h b/common/memstream.h
index a01973c6fa..94407f5cc9 100644
--- a/common/memstream.h
+++ b/common/memstream.h
@@ -157,7 +157,7 @@ public:
* that grows as it's written to.
*/
class MemoryWriteStreamDynamic : public WriteStream {
-private:
+protected:
uint32 _capacity;
uint32 _size;
byte *_ptr;