* Append binary int32 using little endian. */
| 69 | * Append binary int32 using little endian. |
| 70 | */ |
| 71 | void BaseStringBuilder::PutSint32LE(int32_t value) |
| 72 | { |
| 73 | this->PutUint32LE(static_cast<uint32_t>(value)); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Append binary uint64 using little endian. |
no test coverage detected