diff options
author | Etienne Bergeron <etienneb@google.com> | 2016-07-13 06:06:48 +0000 |
---|---|---|
committer | Etienne Bergeron <etienneb@google.com> | 2016-07-13 06:06:48 +0000 |
commit | 238429bd1cc434cf3a07399b3c9cc6a4512aae4c (patch) | |
tree | 1469a9dd0c8ce6bb3f2c41ec0148dd4ee20b3f20 | |
parent | 0056868c4a9f362a4dc554a2e82e50554bf11b96 (diff) | |
download | bcm5719-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.rst | 1 |
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; |