[clang-tools-extra] r275254 - fix missing newline in sphinx doc
Etienne Bergeron via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 12 23:06:48 PDT 2016
Author: etienneb
Date: Wed Jul 13 01:06:48 2016
New Revision: 275254
URL: http://llvm.org/viewvc/llvm-project?rev=275254&view=rev
Log:
fix missing newline in sphinx doc
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=275254&r1=275253&r2=275254&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 Wed Jul 13 01:06:48 2016
@@ -48,6 +48,7 @@ After:
In this case the calls of ``push_back`` won't be replaced.
.. code:: c++
+
std::vector<std::unique_ptr<int> > v;
v.push_back(new int(5));
auto *ptr = int;
More information about the cfe-commits
mailing list