From 689be10891d4ab03853edda4f08db74e7d83e8e0 Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Wed, 6 Apr 2016 00:11:49 +0800 Subject: [PATCH] Fix a compilation error --- include/rapidjson/encodedstream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rapidjson/encodedstream.h b/include/rapidjson/encodedstream.h index c12caac..1450683 100644 --- a/include/rapidjson/encodedstream.h +++ b/include/rapidjson/encodedstream.h @@ -84,11 +84,11 @@ public: Ch* PutBegin() { return 0; } size_t PutEnd(Ch*) { return 0; } + MemoryStream& is_; + private: EncodedInputStream(const EncodedInputStream&); EncodedInputStream& operator=(const EncodedInputStream&); - - MemoryStream& is_; }; //! Output byte stream wrapper with statically bound encoding.