| 8541 | |
| 8542 | template<typename T> |
| 8543 | static T* skipCPPOrAlignAttribute(T * tok) |
| 8544 | { |
| 8545 | if (isCPPAttribute(tok)) |
| 8546 | return tok->link(); |
| 8547 | if (isAlignAttribute(tok)) { |
| 8548 | return tok->linkAt(1); |
| 8549 | } |
| 8550 | return tok; |
| 8551 | } |
| 8552 | |
| 8553 | static bool isNonMacro(const Token* tok) |
| 8554 | { |
no test coverage detected