[clang-tools-extra] r278780 - [clang-rename] fix broken build

Kirill Bobyrev via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 15 23:19:06 PDT 2016


Author: omtcyfz
Date: Tue Aug 16 01:19:06 2016
New Revision: 278780

URL: http://llvm.org/viewvc/llvm-project?rev=278780&view=rev
Log:
[clang-rename] fix broken build

As Eric Fiselier pointed out, r278760 breaks build, because RecursiveASTVisitor
doesn't have a const overload. This patch is a quick fix.

Modified:
    clang-tools-extra/trunk/clang-rename/USRFinder.cpp

Modified: clang-tools-extra/trunk/clang-rename/USRFinder.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-rename/USRFinder.cpp?rev=278780&r1=278779&r2=278780&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-rename/USRFinder.cpp (original)
+++ clang-tools-extra/trunk/clang-rename/USRFinder.cpp Tue Aug 16 01:19:06 2016
@@ -179,7 +179,7 @@ const NamedDecl *getNamedDeclAt(const AS
   NamedDeclFindingASTVisitor Visitor(Point, Context);
 
   // We only want to search the decls that exist in the same file as the point.
-  for (const auto *CurrDecl : Context.getTranslationUnitDecl()->decls()) {
+  for (auto *CurrDecl : Context.getTranslationUnitDecl()->decls()) {
     const SourceLocation FileLoc = CurrDecl->getLocStart();
     StringRef FileName = Context.getSourceManager().getFilename(FileLoc);
     // FIXME: Add test.




More information about the cfe-commits mailing list