Fix clang compilation

This commit is contained in:
Milo Yip 2016-02-15 22:32:14 +08:00
parent 48378b751e
commit 2358f82ee5

View File

@ -81,8 +81,8 @@ public:
// Not implemented
void Put(Ch) {}
void Flush() {}
Ch* PutBegin() { RAPIDJSON_ASSERT(false); return 0; }
size_t PutEnd(Ch*) { RAPIDJSON_ASSERT(false); return 0; }
Ch* PutBegin() { return 0; }
size_t PutEnd(Ch*) { return 0; }
MemoryStream& is_;
};