| 128 | } |
| 129 | |
| 130 | void StringUtil::chomp(std::string* str) { |
| 131 | while (str->back() == '\n' || str->back() == '\r') { |
| 132 | str->pop_back(); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | void StringUtil::replaceAll( |
| 137 | std::string* str, |
nothing calls this directly
no outgoing calls
no test coverage detected