| 57 | } |
| 58 | |
| 59 | void SplitStringToSetUsing(const std::string& full, |
| 60 | const char* delim, |
| 61 | std::set<std::string>* result) { |
| 62 | CHECK(delim != NULL); |
| 63 | CHECK(result != NULL); |
| 64 | simple_insert_iterator<std::set<std::string> > it(result); |
| 65 | SplitStringToIteratorUsing(full, delim, it); |
| 66 | } |
nothing calls this directly
no test coverage detected