| 54 | } |
| 55 | |
| 56 | std::string join (std::vector<std::string> const& sv, char sep) |
| 57 | { |
| 58 | std::string r; |
| 59 | for (auto const& s : sv) { |
| 60 | if (!r.empty()) { |
| 61 | r += sep; |
| 62 | } |
| 63 | r += s; |
| 64 | } |
| 65 | return r; |
| 66 | } |
| 67 | |
| 68 | std::string join (std::vector<std::string> const& sv) |
| 69 | { |
no test coverage detected