| 87 | inline uint8_t DecodeFixed8(const char *ptr) { return DecodeFixed<uint8_t>(ptr); } |
| 88 | inline uint16_t DecodeFixed16(const char *ptr) { return DecodeFixed<uint16_t>(ptr); } |
| 89 | inline uint32_t DecodeFixed32(const char *ptr) { return DecodeFixed<uint32_t>(ptr); } |
| 90 | inline uint64_t DecodeFixed64(const char *ptr) { return DecodeFixed<uint64_t>(ptr); } |
| 91 | |
| 92 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected