| 317 | } |
| 318 | |
| 319 | uint32_t TDebugProtocol::writeI32(const int32_t i32) { |
| 320 | return writeItem(to_string(i32)); |
| 321 | } |
| 322 | |
| 323 | uint32_t TDebugProtocol::writeI64(const int64_t i64) { |
| 324 | return writeItem(to_string(i64)); |
nothing calls this directly
no test coverage detected