Fixing broken docs build

Need an empty line after the code-block directive.
This commit is contained in:
Chris Bieneman 2021-07-29 12:45:56 -05:00
parent 26c695b789
commit f8819c109e
1 changed files with 1 additions and 0 deletions

View File

@ -3894,6 +3894,7 @@ Clang supports the pragma ``#pragma clang deprecated``, which can be used to
provide deprecation warnings for macro uses. For example:
.. code-block:: c
#define MIN(x, y) x < y ? x : y
#pragma clang deprecated(MIN, "use std::min instead")