| 63 | } |
| 64 | |
| 65 | std::vector<std::string> SplitWhitespace(const std::string& line) { |
| 66 | std::vector<std::string> tokens; |
| 67 | std::istringstream iss(line); |
| 68 | std::string token; |
| 69 | while (iss >> token) { |
| 70 | tokens.push_back(token); |
| 71 | } |
| 72 | return tokens; |
| 73 | } |
| 74 | |
| 75 | bool IsCommentOrEmpty(const std::string& line) { |
| 76 | if (line.empty()) { |
no test coverage detected