| 369 | |
| 370 | template <class CONTAINER> |
| 371 | void JoinInts(const CONTAINER& components, |
| 372 | const char* delim, |
| 373 | string* result) { |
| 374 | JoinElements(components, delim, result); |
| 375 | } |
| 376 | |
| 377 | template <class CONTAINER> |
| 378 | inline string JoinInts(const CONTAINER& components, |
nothing calls this directly
no test coverage detected