| 531 | |
| 532 | template <typename OutputIterator> |
| 533 | OutputIterator OutputIntegerAsString(int n, OutputIterator output) { |
| 534 | return OutputInt32AsString(n, output); |
| 535 | } |
| 536 | |
| 537 | template <typename OutputIterator> |
| 538 | OutputIterator OutputIntegerAsString(unsigned int n, OutputIterator output) { |
no test coverage detected