| 548 | |
| 549 | template <typename OutputIterator> |
| 550 | OutputIterator OutputIntegerAsString(int n, OutputIterator output) |
| 551 | { |
| 552 | return OutputInt32AsString(n, output); |
| 553 | } |
| 554 | |
| 555 | template <typename OutputIterator> |
| 556 | OutputIterator OutputIntegerAsString(unsigned int n, OutputIterator output) |
no test coverage detected