| 56 | } |
| 57 | |
| 58 | void |
| 59 | StringUtils::ignore_spaces(const string &str, size_t &pos) |
| 60 | { |
| 61 | while (is_space(str[pos])) |
| 62 | ++pos; |
| 63 | } |
| 64 | |
| 65 | std::string |
| 66 | StringUtils::get_substring(const std::string &s, const char open_delim, const char close_delim) |
nothing calls this directly
no outgoing calls
no test coverage detected