| 533 | |
| 534 | template <typename OutputIterator> |
| 535 | OutputIterator OutputInt64AsString(int64_t i, OutputIterator output) |
| 536 | { |
| 537 | uint64_t u = i; |
| 538 | if (i < 0) |
| 539 | { |
| 540 | *output++ = '-'; |
| 541 | u = -i; |
| 542 | } |
| 543 | return OutputUInt64AsString(u, output); |
| 544 | } |
| 545 | |
| 546 | /////////////////////////////////////////////////////////////////////////// |
| 547 | // generic interface |
no test coverage detected