[clang-tools-extra] r289549 - Fix sphinx build.
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 13 08:49:11 PST 2016
Author: alexfh
Date: Tue Dec 13 10:49:10 2016
New Revision: 289549
URL: http://llvm.org/viewvc/llvm-project?rev=289549&view=rev
Log:
Fix sphinx build.
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-no-malloc.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-no-malloc.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-no-malloc.rst?rev=289549&r1=289548&r2=289549&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-no-malloc.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-no-malloc.rst Tue Dec 13 10:49:10 2016
@@ -7,7 +7,7 @@ This check handles C-Style memory manage
``calloc()`` and ``free()``. It warns about its use and tries to suggest the use
of an appropriate RAII object.
See `C++ Core Guidelines
-<https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-mallocfree>
+<https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rr-mallocfree>`.
There is no attempt made to provide fixit hints, since manual resource management isn't
easily transformed automatically into RAII.
More information about the cfe-commits
mailing list