* Append binary int64 using little endian. */
| 95 | * Append binary int64 using little endian. |
| 96 | */ |
| 97 | void BaseStringBuilder::PutSint64LE(int64_t value) |
| 98 | { |
| 99 | this->PutUint64LE(static_cast<uint64_t>(value)); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Append 8-bit char. |
no test coverage detected