[clang] f8819c1 - Fixing broken docs build
Chris Bieneman via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 29 10:46:09 PDT 2021
Author: Chris Bieneman
Date: 2021-07-29T12:45:56-05:00
New Revision: f8819c109e4afcad19407ceb54e28ef77e1c57e9
URL: https://github.com/llvm/llvm-project/commit/f8819c109e4afcad19407ceb54e28ef77e1c57e9
DIFF: https://github.com/llvm/llvm-project/commit/f8819c109e4afcad19407ceb54e28ef77e1c57e9.diff
LOG: Fixing broken docs build
Need an empty line after the code-block directive.
Added:
Modified:
clang/docs/LanguageExtensions.rst
Removed:
################################################################################
diff --git a/clang/docs/LanguageExtensions.rst b/clang/docs/LanguageExtensions.rst
index 8dafcb2f9a724..aaee136530fef 100644
--- a/clang/docs/LanguageExtensions.rst
+++ b/clang/docs/LanguageExtensions.rst
@@ -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")
More information about the cfe-commits
mailing list