Fix a compilation error

This commit is contained in:
Milo Yip 2016-04-06 00:11:49 +08:00
parent 35ccca8b74
commit 689be10891

View File

@ -84,11 +84,11 @@ public:
Ch* PutBegin() { return 0; } Ch* PutBegin() { return 0; }
size_t PutEnd(Ch*) { return 0; } size_t PutEnd(Ch*) { return 0; }
MemoryStream& is_;
private: private:
EncodedInputStream(const EncodedInputStream&); EncodedInputStream(const EncodedInputStream&);
EncodedInputStream& operator=(const EncodedInputStream&); EncodedInputStream& operator=(const EncodedInputStream&);
MemoryStream& is_;
}; };
//! Output byte stream wrapper with statically bound encoding. //! Output byte stream wrapper with statically bound encoding.