| 65 | } |
| 66 | |
| 67 | void BinaryContainer::appendInt16(int16_t v) |
| 68 | { |
| 69 | append({ |
| 70 | static_cast<uint8_t>(0x00ff & v), |
| 71 | static_cast<uint8_t>(v >> 8), |
| 72 | }); |
| 73 | } |
| 74 | |
| 75 | void BinaryContainer::appendUint16(uint16_t v) |
| 76 | { |
nothing calls this directly
no outgoing calls
no test coverage detected