| 59 | } |
| 60 | |
| 61 | char *EncodeDouble(char *buf, double value) { return EncodeFixed64(buf, EncodeDoubleToUInt64(value)); } |
| 62 | |
| 63 | void PutDouble(std::string *dst, double value) { PutFixed64(dst, EncodeDoubleToUInt64(value)); } |
| 64 |
nothing calls this directly
no test coverage detected