| 120 | |
| 121 | template <typename Collection> |
| 122 | inline void StripWhiteSpaceInCollection(Collection* collection) { |
| 123 | for (typename Collection::iterator it = collection->begin(); |
| 124 | it != collection->end(); ++it) |
| 125 | StripWhiteSpace(&(*it)); |
| 126 | } |
| 127 | |
| 128 | } // namespace strings |
| 129 |
nothing calls this directly
no test coverage detected