[clang-tidy] Fix modernize-use-emplace docs

llvm-svn: 296867
This commit is contained in:
Piotr Padlewski 2017-03-03 12:42:22 +00:00
parent b01bb3a1b2
commit 26e176e558
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ After:
std::vector<std::pair<int, int>> w;
w.emplace_back(21, 37);
// This will be fixed to w.push_back(21, 37); in next version
// This will be fixed to w.emplace_back(21L, 37L); in next version
w.emplace_back(std::make_pair(21L, 37L);
The other situation is when we pass arguments that will be converted to a type