| 20 | |
| 21 | template <typename H, typename... T> |
| 22 | void StringUtil::toStringVImpl( |
| 23 | std::vector<std::string>* target, |
| 24 | H value, |
| 25 | T... values) { |
| 26 | target->emplace_back(toString(value)); |
| 27 | toStringVImpl(target, values...); |
| 28 | } |
| 29 | |
| 30 | template <typename... T> |
| 31 | std::vector<std::string> StringUtil::toStringV(T... values) { |
nothing calls this directly
no outgoing calls
no test coverage detected