diff options
Diffstat (limited to 'clang/tools/libclang/CXSourceLocation.h')
-rw-r--r-- | clang/tools/libclang/CXSourceLocation.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/tools/libclang/CXSourceLocation.h b/clang/tools/libclang/CXSourceLocation.h index f0b3f495491..dddc8475906 100644 --- a/clang/tools/libclang/CXSourceLocation.h +++ b/clang/tools/libclang/CXSourceLocation.h @@ -25,7 +25,7 @@ class SourceManager; namespace cxloc { -/// \brief Translate a Clang source location into a CIndex source location. +/// Translate a Clang source location into a CIndex source location. static inline CXSourceLocation translateSourceLocation(const SourceManager &SM, const LangOptions &LangOpts, SourceLocation Loc) { @@ -37,7 +37,7 @@ translateSourceLocation(const SourceManager &SM, const LangOptions &LangOpts, return Result; } -/// \brief Translate a Clang source location into a CIndex source location. +/// Translate a Clang source location into a CIndex source location. static inline CXSourceLocation translateSourceLocation(ASTContext &Context, SourceLocation Loc) { return translateSourceLocation(Context.getSourceManager(), @@ -45,7 +45,7 @@ static inline CXSourceLocation translateSourceLocation(ASTContext &Context, Loc); } -/// \brief Translate a Clang source range into a CIndex source range. +/// Translate a Clang source range into a CIndex source range. /// /// Clang internally represents ranges where the end location points to the /// start of the token at the end. However, for external clients it is more @@ -55,7 +55,7 @@ CXSourceRange translateSourceRange(const SourceManager &SM, const LangOptions &LangOpts, const CharSourceRange &R); -/// \brief Translate a Clang source range into a CIndex source range. +/// Translate a Clang source range into a CIndex source range. static inline CXSourceRange translateSourceRange(ASTContext &Context, SourceRange R) { return translateSourceRange(Context.getSourceManager(), |