diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 1a7d48a0b4dc7..684ba77d8f0f5 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -112,11 +112,11 @@ Improvements to clang-tidy the configuration options of the `Clang Static Analyzer Checks `_. +- Improved :program:`clang-tidy` by accepting parameters file in command line. + - Improved :program:`run-clang-tidy.py` script. Fixed minor shutdown noise happening on certain platforms when interrupting the script. -- Improved :program:`clang-tidy` by accepting parameters file in command line. - - Removed :program:`clang-tidy`'s global options for most of checks. All options are changed to local options except `IncludeStyle`, `StrictMode` and `IgnoreMacros`. Global scoped `StrictMode` and `IgnoreMacros` are deprecated @@ -292,7 +292,7 @@ Changes in existing checks overloaded ``operator new`` and ``operator delete``. - Improved :doc:`modernize-avoid-c-arrays - ` check to suggest using + ` check to suggest using ``std::span`` as a replacement for parameters of incomplete C array type in C++20 and ``std::array`` or ``std::vector`` before C++20.