diff options
Diffstat (limited to 'clang/tools/libclang/CursorVisitor.h')
-rw-r--r-- | clang/tools/libclang/CursorVisitor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/libclang/CursorVisitor.h b/clang/tools/libclang/CursorVisitor.h index 38b7f334ada..53d864d9423 100644 --- a/clang/tools/libclang/CursorVisitor.h +++ b/clang/tools/libclang/CursorVisitor.h @@ -116,7 +116,7 @@ private: /// \param R a half-open source range retrieved from the abstract syntax tree. RangeComparisonResult CompareRegionOfInterest(SourceRange R); - void visitDeclsFromFileRegion(FileID File, unsigned Offset, unsigned Length); + bool visitDeclsFromFileRegion(FileID File, unsigned Offset, unsigned Length); class SetParentRAII { CXCursor &Parent; @@ -179,7 +179,7 @@ public: /// \brief Visit declarations and preprocessed entities for the file region /// designated by \see RegionOfInterest. - void visitFileRegion(); + bool visitFileRegion(); bool visitPreprocessedEntitiesInRegion(); |