| 8535 | } |
| 8536 | |
| 8537 | static bool isAlignAttribute(const Token * tok) |
| 8538 | { |
| 8539 | return Token::simpleMatch(tok, "alignas (") && tok->linkAt(1); |
| 8540 | } |
| 8541 | |
| 8542 | template<typename T> |
| 8543 | static T* skipCPPOrAlignAttribute(T * tok) |
no test coverage detected