[PATCH] D24183: A clang tool for changing surrouding namespaces of class/function definitions.
Eric Liu via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 16 03:00:45 PDT 2016
ioeric marked an inline comment as done.
================
Comment at: change-namespace/ChangeNamespace.cpp:448
@@ +447,3 @@
+ continue;
+ const std::string &FilePath = FileAndNsMoves.first;
+ auto &Replaces = FileToReplacements[FilePath];
----------------
omtcyfz wrote:
> `StringRef` here too.
If this was a `StringRef`, then each map access would require an implicit conversion from `StringRef` to `std::string`, which is expensive. And this is already a reference anyway.
https://reviews.llvm.org/D24183
More information about the cfe-commits
mailing list