| 9473 | } |
| 9474 | |
| 9475 | static bool isAttribute(const Token* tok, bool gcc) { |
| 9476 | return gcc ? Token::Match(tok, "__attribute__|__attribute (") : Token::Match(tok, "__declspec|_declspec ("); |
| 9477 | } |
| 9478 | |
| 9479 | static Token* getTokenAfterAttributes(Token* tok, bool gccattr) { |
| 9480 | Token* after = tok; |
no outgoing calls
no test coverage detected