[clang] c58777c - [clang][ReleaseNotes] Fix code block not rendering (#135330)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 11 04:53:37 PDT 2025
Author: Mészáros Gergely
Date: 2025-04-11T13:53:33+02:00
New Revision: c58777c2ad3464cfddc62e1da13dae443e868f3e
URL: https://github.com/llvm/llvm-project/commit/c58777c2ad3464cfddc62e1da13dae443e868f3e
DIFF: https://github.com/llvm/llvm-project/commit/c58777c2ad3464cfddc62e1da13dae443e868f3e.diff
LOG: [clang][ReleaseNotes] Fix code block not rendering (#135330)
Bullet lists require a blank line between paragraphs therefore the `..
code-block::` directive only renders correctly if preceded by a blank
line.
Added:
Modified:
clang/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 46d2debec3621..69c7369755c67 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -334,6 +334,7 @@ Improvements to Clang's diagnostics
- Fixed an assertion when referencing an out-of-bounds parameter via a function
attribute whose argument list refers to parameters by index and the function
is variadic. e.g.,
+
.. code-block:: c
__attribute__ ((__format_arg__(2))) void test (int i, ...) { }
More information about the cfe-commits
mailing list