| 62 | } |
| 63 | |
| 64 | void PutFixed32(string* dst, uint32 value) { |
| 65 | char buf[sizeof(value)]; |
| 66 | EncodeFixed32(buf, value); |
| 67 | dst->append(buf, sizeof(buf)); |
| 68 | } |
| 69 | |
| 70 | void PutFixed64(string* dst, uint64 value) { |
| 71 | char buf[sizeof(value)]; |
no test coverage detected