diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-11-18 00:26:59 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-11-18 00:26:59 +0000 |
commit | 88c2596edc8eb475e20f6033de1ea01669695a0c (patch) | |
tree | 679107546ea3a40c67fda44db856d82616a08b6a /tools/libclang/Indexing.cpp | |
parent | b395c63b473bf1b3783bff371a993332e8c4c5e3 (diff) |
Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue
parsing or false to abort parsing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144943 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/Indexing.cpp')
-rw-r--r-- | tools/libclang/Indexing.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/libclang/Indexing.cpp b/tools/libclang/Indexing.cpp index 5858faad2e..3fa5a20ffc 100644 --- a/tools/libclang/Indexing.cpp +++ b/tools/libclang/Indexing.cpp @@ -115,12 +115,9 @@ public: virtual void HandleTranslationUnit(ASTContext &Ctx) { } - virtual void HandleTopLevelDecl(DeclGroupRef DG) { + virtual bool HandleTopLevelDecl(DeclGroupRef DG) { IndexCtx.indexDeclGroupRef(DG); - // FIXME: Indicate to parser to abort. -// if (IndexCtx.shouldAbort()) { -// -// } + return !IndexCtx.shouldAbort(); } /// \brief Handle the specified top-level declaration that occurred inside |