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;


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to