| 142 | void JsonWriter::Int(int i) { impl_->Int(i); } |
| 143 | void JsonWriter::Uint(unsigned u) { impl_->Uint(u); } |
| 144 | void JsonWriter::Int64(int64_t i64) { impl_->Int64(i64); } |
| 145 | void JsonWriter::Uint64(uint64_t u64) { impl_->Uint64(u64); } |
| 146 | void JsonWriter::Double(double d) { impl_->Double(d); } |
| 147 | void JsonWriter::String(const char* str, size_t length) { impl_->String(str, length); } |
no outgoing calls
no test coverage detected