| 56 | } |
| 57 | |
| 58 | void PutFixed16(string* dst, uint16 value) { |
| 59 | char buf[sizeof(value)]; |
| 60 | EncodeFixed16(buf, value); |
| 61 | dst->append(buf, sizeof(buf)); |
| 62 | } |
| 63 | |
| 64 | void PutFixed32(string* dst, uint32 value) { |
| 65 | char buf[sizeof(value)]; |
nothing calls this directly
no test coverage detected