| 151 | } |
| 152 | |
| 153 | static bool sameline(const simplecpp::Token *tok1, const simplecpp::Token *tok2) |
| 154 | { |
| 155 | return tok1 && tok2 && tok1->location.sameline(tok2->location); |
| 156 | } |
| 157 | |
| 158 | static bool isAlternativeBinaryOp(const simplecpp::Token *tok, const std::string &alt) |
| 159 | { |
no outgoing calls
no test coverage detected