forked from qt-creator/qt-creator
@@ -417,6 +417,24 @@ protected:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QFutureInterface<Utils::FileSearchResult> *_future;
|
QFutureInterface<Utils::FileSearchResult> *_future;
|
||||||
Identifier *_id; // ### remove me
|
Identifier *_id; // ### remove me
|
||||||
|
Reference in New Issue
Block a user