| 302 | */ |
| 303 | template<size_t count> |
| 304 | static bool simpleMatch(const Token *tok, const char (&pattern)[count]) { |
| 305 | return simpleMatch(tok, pattern, count-1); |
| 306 | } |
| 307 | |
| 308 | static bool simpleMatch(const Token *tok, const char pattern[], size_t pattern_len); |
| 309 |
no outgoing calls