From: Etienne Bergeron Date: Wed, 11 May 2016 20:09:17 +0000 (+0000) Subject: [tooling] Fix missing inline keyworkd, breaking build bot. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73cb61ffbb185ec66c92b2365f8445fdeb74781b;p=clang [tooling] Fix missing inline keyworkd, breaking build bot. Summary: The missing keyword "inline" is causing some buildbot to fail. The symbol is not available. see: http://lab.llvm.org:8011/builders/clang-ppc64be-linux-multistage/builds/2281/ Reviewers: rnk Subscribers: cfe-commits, klimek Differential Revision: http://reviews.llvm.org/D20180 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@269224 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Tooling/FixIt.h b/include/clang/Tooling/FixIt.h index bf4e0e4211..733de5074a 100644 --- a/include/clang/Tooling/FixIt.h +++ b/include/clang/Tooling/FixIt.h @@ -40,27 +40,27 @@ inline SourceRange getSourceRange(const SourceLocation &Loc) { /// \brief Returns the SourceRange of an given Node. \p Node is typically a /// 'Stmt', 'Expr' or a 'Decl'. -template SourceRange getSourceRange(const T &Node) { +template inline SourceRange getSourceRange(const T &Node) { return Node.getSourceRange(); } } // end namespace internal // \brief Returns a textual representation of \p Node. template -StringRef getText(const T &Node, const ASTContext &Context) { +inline StringRef getText(const T &Node, const ASTContext &Context) { return internal::getText(internal::getSourceRange(Node), Context); } // \brief Returns a FixItHint to remove \p Node. // TODO: Add support for related syntactical elements (i.e. comments, ...). -template FixItHint createRemoval(const T &Node) { +template inline FixItHint createRemoval(const T &Node) { return FixItHint::CreateRemoval(internal::getSourceRange(Node)); } // \brief Returns a FixItHint to replace \p Destination by \p Source. template -FixItHint createReplacement(const D &Destination, const S &Source, - const ASTContext &Context) { +inline FixItHint createReplacement(const D &Destination, const S &Source, + const ASTContext &Context) { return FixItHint::CreateReplacement(internal::getSourceRange(Destination), getText(Source, Context)); }