Commit 29a0c6d2a4d36a0f649d575f77515e16d6e2f570
| |   |
| 417 | 417 | return false; |
| 418 | 418 | } |
| 419 | 419 | |
| virtual bool visit(ExpressionOrDeclarationStatementAST *ast) |
| { |
| accept(ast->declaration); |
| return false; |
| } |
|
| virtual bool visit(FunctionDeclaratorAST *ast) |
| { |
| accept(ast->parameters); |
|
| for (SpecifierAST *spec = ast->cv_qualifier_seq; spec; spec = spec->next) |
| accept(spec); |
|
| accept(ast->exception_specification); |
|
| return false; |
| } |
|
| 420 | 438 | private: |
| 421 | 439 | QFutureInterface<Utils::FileSearchResult> *_future; |
| 422 | 440 | Identifier *_id; // ### remove me |