Skip to content

Commit

Permalink
Fix clang compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
miloyip committed Feb 15, 2016
1 parent 48378b7 commit 2358f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/rapidjson/encodedstream.h
Expand Up @@ -81,8 +81,8 @@ class EncodedInputStream<UTF8<>, MemoryStream> {
// 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_;
};
Expand Down

0 comments on commit 2358f82

Please sign in to comment.