[clang-tools-extra] r296867 - [clang-tidy] Fix modernize-use-emplace docs
Piotr Padlewski via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 3 04:42:23 PST 2017
Author: prazek
Date: Fri Mar 3 06:42:22 2017
New Revision: 296867
URL: http://llvm.org/viewvc/llvm-project?rev=296867&view=rev
Log:
[clang-tidy] Fix modernize-use-emplace docs
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-emplace.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-emplace.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-emplace.rst?rev=296867&r1=296866&r2=296867&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-emplace.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-use-emplace.rst Fri Mar 3 06:42:22 2017
@@ -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
More information about the cfe-commits
mailing list