| 27 | } |
| 28 | |
| 29 | inline void SafePushStringToVector(std::vector<std::string> &out, const std::string &s) { |
| 30 | if(!s.empty()) { |
| 31 | out.emplace_back(s); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void SplitFontFields(const std::string &s, std::vector<std::string> &out) { |
| 36 | size_t len = s.length(); |
no test coverage detected