Speculatively fix the sphinx build.
authorAaron Ballman <aaron@aaronballman.com>
Tue, 7 Jul 2020 17:54:02 +0000 (13:54 -0400)
committerAaron Ballman <aaron@aaronballman.com>
Tue, 7 Jul 2020 17:54:28 +0000 (13:54 -0400)
clang-tools-extra/docs/clang-tidy/checks/bugprone-no-escape.rst

index ea137b9..770a71c 100644 (file)
@@ -11,6 +11,7 @@ asynchronously-executed block. The block arguments in ``dispatch_async()`` and
 The following is an example of an invalid use of the ``noescape`` attribute.
 
   .. code-block:: objc
+
     void foo(__attribute__((noescape)) int *p) {
       dispatch_async(queue, ^{
         *p = 123;