[clang-tools-extra] r374710 - [clang-tidy] bugprone-not-null-terminated-result: Sphinx adjustments 2

Csaba Dabis via cfe-commits cfe-commits at lists.llvm.org
Sun Oct 13 01:49:44 PDT 2019


Author: charusso
Date: Sun Oct 13 01:49:43 2019
New Revision: 374710

URL: http://llvm.org/viewvc/llvm-project?rev=374710&view=rev
Log:
[clang-tidy] bugprone-not-null-terminated-result: Sphinx adjustments 2

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst?rev=374710&r1=374709&r2=374710&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst Sun Oct 13 01:49:43 2019
@@ -91,32 +91,36 @@ respectively (where only ``strerror_s``
 Memory handler functions
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
-- ``memcpy`` Please visit the
-  :ref:`Transformation rules of 'memcpy()'<MemcpyTransformation>` section.
+``memcpy``
+Please visit the
+:ref:`Transformation rules of 'memcpy()'<MemcpyTransformation>` section.
+
+``memchr``
+Usually there is a C-style cast and it is needed to be removed, because the
+new function ``strchr``'s return type is correct. The given length is going
+to be removed.
+
+``memmove``
+If safe functions are available the new function is ``memmove_s``, which has
+a new second argument which is the length of the destination array, it is
+adjusted, and the length of the source string is incremented by one.
+If safe functions are not available the given length is incremented by one.
 
-- ``memchr``
-  Usually there is a C-style cast and it is needed to be removed, because the
-  new function ``strchr``'s return type is correct.
-  The given length is going to be removed.
-
-- ``memmove``
-  If safe functions are available the new function is ``memmove_s``, which has
-  a new second argument which is the length of the destination array, it is
-  adjusted, and the length of the source string is incremented by one.
-  If safe functions are not available the given length is incremented by one.
-
-- ``memmove_s``
-  The given length is incremented by one.
+``memmove_s``
+The given length is incremented by one.
 
 String handler functions
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
-- ``strerror_s``: given length is incremented by one.
+``strerror_s``
+The given length is incremented by one.
 
-- ``strncmp``: If the third argument is the first or the second argument's
-    ``length + 1`` it has to be truncated without the ``+ 1`` operation.
+``strncmp``
+If the third argument is the first or the second argument's ``length + 1``
+it has to be truncated without the ``+ 1`` operation.
 
-- ``strxfrm``: given length is incremented by one.
+``strxfrm``
+The given length is incremented by one.
 
 Options
 -------




More information about the cfe-commits mailing list