[clang] 1a88292 - Fix Clang Sphinx build
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 17 06:02:20 PDT 2023
Author: Aaron Ballman
Date: 2023-07-17T09:01:51-04:00
New Revision: 1a88292e03da55977bb92ac5534ea7c082b5d886
URL: https://github.com/llvm/llvm-project/commit/1a88292e03da55977bb92ac5534ea7c082b5d886
DIFF: https://github.com/llvm/llvm-project/commit/1a88292e03da55977bb92ac5534ea7c082b5d886.diff
LOG: Fix Clang Sphinx build
This addresses the issues accidentally introduced in
b0697a1cb0b539c773548f62402816e2d9b6f107
Added:
Modified:
clang/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 8f3bd70f7a2aa1..d334ae48cfc039 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -386,13 +386,6 @@ Improvements to Clang's diagnostics
on overload resolution, when the actual reason for the failure is loss of other qualifiers.
- Clang's notes about unconvertible types in overload resolution failure now covers
the source range of parameter declaration of the candidate function declaration.
-- Added a new diagnostic warning group
- ``-Wdeprecated-redundant-constexpr-static-def``, under the existing
- ``-Wdeprecated`` group. This controls warnings about out-of-line definitions
- of 'static constexpr' data members that are unnecessary from C++17 onwards.
-
- Bug Fixes in This Version
- -------------------------
*Example Code*:
@@ -422,6 +415,7 @@ Improvements to Clang's diagnostics
source:1:6: note: candidate function not viable: no known conversion from 'const char[4]' to 'int' for 2nd argument
void func(int aa, int bb);
^ ~~~~~~
+
- ``-Wformat`` cast fix-its will now suggest ``static_cast`` instead of C-style casts
for C++ code.
- ``-Wformat`` will no longer suggest a no-op fix-it for fixing scoped enum format
@@ -431,6 +425,10 @@ Improvements to Clang's diagnostics
Bug Fixes in This Version
-------------------------
+- Added a new diagnostic warning group
+ ``-Wdeprecated-redundant-constexpr-static-def``, under the existing
+ ``-Wdeprecated`` group. This controls warnings about out-of-line definitions
+ of 'static constexpr' data members that are unnecessary from C++17 onwards.
- Fix segfault while running clang-rename on a non existing file.
(`#36471 <https://github.com/llvm/llvm-project/issues/36471>`_)
- Fix crash when diagnosing incorrect usage of ``_Nullable`` involving alias
More information about the cfe-commits
mailing list