| 621 | } |
| 622 | |
| 623 | void AppendIntegerToString(int n, std::string* str) { |
| 624 | OutputIntegerAsString(n, std::back_inserter(*str)); |
| 625 | } |
| 626 | void AppendIntegerToString(unsigned int n, std::string* str) { |
| 627 | OutputIntegerAsString(n, std::back_inserter(*str)); |
| 628 | } |
nothing calls this directly
no test coverage detected