Commit 29a0c6d2a4d36a0f649d575f77515e16d6e2f570

  • avatar
  • con <qtc-committer @no…a.com> (Committer)
  • Tue Oct 13 11:22:39 CEST 2009
  • avatar
  • Roberto Raggi (Author)
  • Fri Oct 09 11:02:10 CEST 2009
Handle ambiguous AST nodes.
(cherry picked from commit dbffec2cca9f35e9475e33648d7907fe0b9d9ecc)
  
417417 return false;
418418 }
419419
420 virtual bool visit(ExpressionOrDeclarationStatementAST *ast)
421 {
422 accept(ast->declaration);
423 return false;
424 }
425
426 virtual bool visit(FunctionDeclaratorAST *ast)
427 {
428 accept(ast->parameters);
429
430 for (SpecifierAST *spec = ast->cv_qualifier_seq; spec; spec = spec->next)
431 accept(spec);
432
433 accept(ast->exception_specification);
434
435 return false;
436 }
437
420438private:
421439 QFutureInterface<Utils::FileSearchResult> *_future;
422440 Identifier *_id; // ### remove me