| 684 | } |
| 685 | |
| 686 | void AppendIntegerToString(int n, std::string* str) |
| 687 | { |
| 688 | OutputIntegerAsString(n, std::back_inserter(*str)); |
| 689 | } |
| 690 | void AppendIntegerToString(unsigned int n, std::string* str) |
| 691 | { |
| 692 | OutputIntegerAsString(n, std::back_inserter(*str)); |
nothing calls this directly
no test coverage detected