* Append binary int16 using little endian. */
| 47 | * Append binary int16 using little endian. |
| 48 | */ |
| 49 | void BaseStringBuilder::PutSint16LE(int16_t value) |
| 50 | { |
| 51 | this->PutUint16LE(static_cast<uint16_t>(value)); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Append binary uint32 using little endian. |
no test coverage detected