diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 15d142af8d34e4..ec7b44405310dd 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -123,8 +123,12 @@ New checks - New :doc:`bugprone-unchecked-optional-access ` check. - Warns when the code is unwrapping a `std::optional`, `absl::optional`, - or `base::Optional` object without assuring that it contains a value. + Warns when the code is unwrapping a `std::optional`, `absl::optional`, + or `base::Optional` object without assuring that it contains a value. + +- New :doc:`misc-confusable-identifiers ` check. + + Detects confusable Unicode identifiers. - New :doc:`modernize-macro-to-enum ` check. @@ -139,10 +143,6 @@ New checks Future libc++ will remove the extension (`D120996 `). -- New :doc:`misc-confusable-identifiers