summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEtienne Bergeron <etienneb@google.com>2016-07-13 06:06:48 +0000
committerEtienne Bergeron <etienneb@google.com>2016-07-13 06:06:48 +0000
commit238429bd1cc434cf3a07399b3c9cc6a4512aae4c (patch)
tree1469a9dd0c8ce6bb3f2c41ec0148dd4ee20b3f20
parent0056868c4a9f362a4dc554a2e82e50554bf11b96 (diff)
downloadbcm5719-llvm-238429bd1cc434cf3a07399b3c9cc6a4512aae4c.tar.gz
bcm5719-llvm-238429bd1cc434cf3a07399b3c9cc6a4512aae4c.zip
fix missing newline in sphinx doc
llvm-svn: 275254
-rw-r--r--clang-tools-extra/docs/clang-tidy/checks/modernize-use-emplace.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/modernize-use-emplace.rst b/clang-tools-extra/docs/clang-tidy/checks/modernize-use-emplace.rst
index 6d07d351039..d2c2f06effb 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/modernize-use-emplace.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/modernize-use-emplace.rst
@@ -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;
OpenPOWER on IntegriCloud