| 50 | void writeUInt(uint64_t i) {_writeInt("%llu", i);} |
| 51 | void writeFloat(float f) {_writeFloat(f);} |
| 52 | void writeDouble(double d) {_writeFloat(d);} |
| 53 | |
| 54 | void writeString(const std::string &s) {writeString(slice(s));} |
| 55 | void writeString(slice s); |
nothing calls this directly
no outgoing calls
no test coverage detected