| 99 | /* Read functions */ |
| 100 | |
| 101 | static uint32_t read(std::shared_ptr<apache::thrift::protocol::TProtocol> proto, int8_t& val) { return proto->readByte(val); } |
| 102 | |
| 103 | static uint32_t read(std::shared_ptr<apache::thrift::protocol::TProtocol> proto, int16_t& val) { return proto->readI16(val); } |
| 104 |
nothing calls this directly
no test coverage detected