| 146 | } |
| 147 | |
| 148 | static bool endsWith(const std::string &s, const std::string &e) |
| 149 | { |
| 150 | return (s.size() >= e.size()) && std::equal(e.rbegin(), e.rend(), s.rbegin()); |
| 151 | } |
| 152 | |
| 153 | static bool sameline(const simplecpp::Token *tok1, const simplecpp::Token *tok2) |
| 154 | { |
no test coverage detected