[PATCH] D22208: [clang-tidy] Fixes to modernize-use-emplace
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 28 07:14:58 PDT 2016
aaron.ballman added inline comments.
================
Comment at: clang-tidy/modernize/UseEmplaceCheck.h:36-37
@@ -32,1 +35,4 @@
+private:
+ std::vector<std::string> ContainersWithPushBack;
+ std::vector<std::string> SmartPointers;
};
----------------
What about `llvm::make_range()`?
https://reviews.llvm.org/D22208
More information about the cfe-commits
mailing list