| 313 | } |
| 314 | |
| 315 | uint32_t TDebugProtocol::writeI16(const int16_t i16) { |
| 316 | return writeItem(to_string(i16)); |
| 317 | } |
| 318 | |
| 319 | uint32_t TDebugProtocol::writeI32(const int32_t i32) { |
| 320 | return writeItem(to_string(i32)); |
nothing calls this directly
no test coverage detected