diff --git a/include/rapidjson/encodedstream.h b/include/rapidjson/encodedstream.h index 5d4e7799..215e1451 100644 --- a/include/rapidjson/encodedstream.h +++ b/include/rapidjson/encodedstream.h @@ -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_; };