diff options
Diffstat (limited to 'include/clang/Tooling/FixIt.h')
-rw-r--r-- | include/clang/Tooling/FixIt.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/clang/Tooling/FixIt.h b/include/clang/Tooling/FixIt.h index c1e508849280b..b36f378d6361c 100644 --- a/include/clang/Tooling/FixIt.h +++ b/include/clang/Tooling/FixIt.h @@ -29,35 +29,35 @@ namespace fixit { namespace internal { StringRef getText(SourceRange Range, const ASTContext &Context); -/// \brief Returns the SourceRange of a SourceRange. This identity function is +/// Returns the SourceRange of a SourceRange. This identity function is /// used by the following template abstractions. inline SourceRange getSourceRange(const SourceRange &Range) { return Range; } -/// \brief Returns the SourceRange of the token at Location \p Loc. +/// Returns the SourceRange of the token at Location \p Loc. inline SourceRange getSourceRange(const SourceLocation &Loc) { return SourceRange(Loc); } -/// \brief Returns the SourceRange of an given Node. \p Node is typically a +/// Returns the SourceRange of an given Node. \p Node is typically a /// 'Stmt', 'Expr' or a 'Decl'. template <typename T> SourceRange getSourceRange(const T &Node) { return Node.getSourceRange(); } } // end namespace internal -// \brief Returns a textual representation of \p Node. +// Returns a textual representation of \p Node. template <typename T> StringRef getText(const T &Node, const ASTContext &Context) { return internal::getText(internal::getSourceRange(Node), Context); } -// \brief Returns a FixItHint to remove \p Node. +// Returns a FixItHint to remove \p Node. // TODO: Add support for related syntactical elements (i.e. comments, ...). template <typename T> FixItHint createRemoval(const T &Node) { return FixItHint::CreateRemoval(internal::getSourceRange(Node)); } -// \brief Returns a FixItHint to replace \p Destination by \p Source. +// Returns a FixItHint to replace \p Destination by \p Source. template <typename D, typename S> FixItHint createReplacement(const D &Destination, const S &Source, const ASTContext &Context) { @@ -65,7 +65,7 @@ FixItHint createReplacement(const D &Destination, const S &Source, getText(Source, Context)); } -// \brief Returns a FixItHint to replace \p Destination by \p Source. +// Returns a FixItHint to replace \p Destination by \p Source. template <typename D> FixItHint createReplacement(const D &Destination, StringRef Source) { return FixItHint::CreateReplacement(internal::getSourceRange(Destination), |