| 44 | |
| 45 | Ch Peek() const { return CEREAL_RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_; } |
| 46 | Ch Take() { return CEREAL_RAPIDJSON_UNLIKELY(src_ == end_) ? '\0' : *src_++; } |
| 47 | size_t Tell() const { return static_cast<size_t>(src_ - begin_); } |
| 48 | |
| 49 | Ch* PutBegin() { CEREAL_RAPIDJSON_ASSERT(false); return 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected