[PATCH] D23651: [clang-rename] improve performance for rename-all
Alexander Shaposhnikov via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 19 03:12:47 PDT 2016
alexshap added inline comments.
================
Comment at: clang-rename/USRFindingAction.cpp:205
@@ -196,2 +204,3 @@
+ USRList));
return std::move(Consumer);
}
----------------
not particularly important, probably it can be simply
return llvm::make_unique<NamedDeclFindingConsumer>(
SymbolOffsets, OldNames, SpellingNames, USRList);
https://reviews.llvm.org/D23651
More information about the cfe-commits
mailing list