Try to fix clang and gcc warnings problems again x4

This commit is contained in:
Milo Yip
2015-12-18 19:54:10 +08:00
parent 4cb7c88ca9
commit d6478991d0
3 changed files with 8 additions and 8 deletions

View File

@@ -1040,8 +1040,8 @@ public:
size_t Tell() const { return static_cast<size_t>(is_.tellg()); }
Ch* PutBegin() { assert(false); return 0; }
void Put(Ch) RAPIDJSON_NORETURN_SUFFIX { assert(false); }
void Flush() RAPIDJSON_NORETURN_SUFFIX { assert(false); }
void Put(Ch) { assert(false); }
void Flush() { assert(false); }
size_t PutEnd(Ch*) { assert(false); return 0; }
private: