diff options
Diffstat (limited to 'tools/libclang/Index_Internal.h')
-rw-r--r-- | tools/libclang/Index_Internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/libclang/Index_Internal.h b/tools/libclang/Index_Internal.h index 98f069c88738..fbe3cabf04c8 100644 --- a/tools/libclang/Index_Internal.h +++ b/tools/libclang/Index_Internal.h @@ -40,15 +40,15 @@ typedef struct _CXCursorAndRangeVisitorBlock { #endif // !__has_feature(blocks) -/// \brief The result of comparing two source ranges. +/// The result of comparing two source ranges. enum RangeComparisonResult { - /// \brief Either the ranges overlap or one of the ranges is invalid. + /// Either the ranges overlap or one of the ranges is invalid. RangeOverlap, - /// \brief The first range ends before the second range starts. + /// The first range ends before the second range starts. RangeBefore, - /// \brief The first range starts after the second range ends. + /// The first range starts after the second range ends. RangeAfter }; |