diff options
author | Jakub Kuderski <kubakuderski@gmail.com> | 2017-05-16 04:25:42 +0000 |
---|---|---|
committer | Jakub Kuderski <kubakuderski@gmail.com> | 2017-05-16 04:25:42 +0000 |
commit | 7ff204ffdc6018b6eeb2759d48dca4307bf25b8b (patch) | |
tree | b7f3c131c42c6850ea9e45c6b7ff4cb3676d07e0 /llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp | |
parent | 44c45717b9e9f3dc194508d2eeeb8599a9d76949 (diff) | |
download | bcm5719-llvm-7ff204ffdc6018b6eeb2759d48dca4307bf25b8b.tar.gz bcm5719-llvm-7ff204ffdc6018b6eeb2759d48dca4307bf25b8b.zip |
[clang-tidy] modernize-use-emplace: Remove unnecessary make_tuple calls
Summary:
This patch makes modernize-use-emplace remove unnecessary make_ calls from push_back calls and turn them into emplace_back -- the same way make_pair calls are handled.
Custom make_ calls can be removed for custom tuple-like types -- two new options that control that are `TupleTypes` and `TupleMakeFunctions`. By default, the check removes calls to `std::make_pair` and `std::make_tuple`.
Eq.
```
std::vector<std::tuple<int, char, bool>> v;
v.push_back(std::make_tuple(1, 'A', true)); // --> v.emplace_back(1, 'A', true);
```
Reviewers: alexfh, aaron.ballman, Prazek, hokein
Reviewed By: Prazek
Subscribers: JDevlieghere, xazax.hun, JonasToth, cfe-commits
Tags: #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D32690
llvm-svn: 303139
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp')
0 files changed, 0 insertions, 0 deletions