Skip to content

Commit

Permalink
[clang-tidy][NFC] Improve release notes
Browse files Browse the repository at this point in the history
Fix formating, merge few entrys.
  • Loading branch information
PiotrZSL committed Jul 24, 2023
1 parent 4384b52 commit f617aaa
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions clang-tools-extra/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -419,13 +419,10 @@ Changes in existing checks
when using structured bindings.

- In :doc:`modernize-use-default-member-init
<clang-tidy/checks/modernize/use-default-member-init>` count template
constructors toward hand written constructors so that they are skipped if more
than one exists.

- Fixed crash in :doc:`modernize-use-default-member-init
<clang-tidy/checks/modernize/use-default-member-init>` with array members which
are value initialized.
<clang-tidy/checks/modernize/use-default-member-init>` check, template
constructors are now counted towards hand-written constructors and skipped
if more than one exists. Additionally, a crash that occurred with array
members being value-initialized has been fixed.

- Fixed false positive in :doc:`modernize-use-equals-default
<clang-tidy/checks/modernize/use-equals-default>` check for special member
Expand Down Expand Up @@ -500,7 +497,7 @@ Changes in existing checks

- Fixed an issue in :doc:`readability-identifier-naming
<clang-tidy/checks/readability/identifier-naming>` when specifying an empty
string for ``Prefix`` or ``Suffix`` options could result in the style not
string for `Prefix` or `Suffix` options could result in the style not
being used.

- Improved the performance of the :doc:`readability-identifier-naming
Expand All @@ -511,12 +508,10 @@ Changes in existing checks
be unnecessarily emitted for explicit cast using direct list initialization.

- Added support to optionally ignore user-defined literals in
:doc:`readability-magic-numbers<clang-tidy/checks/readability/magic-numbers>`.

- Improved :doc:`readability-magic-numbers
<clang-tidy/checks/readability/magic-numbers>` check, now allows for
magic numbers in type aliases such as ``using`` and ``typedef`` declarations if
the new ``IgnoreTypeAliases`` option is set to true.
:doc:`readability-magic-numbers <clang-tidy/checks/readability/magic-numbers>`
check and improved it to allow magic numbers in type aliases such as ``using``
and ``typedef`` declarations if the new `IgnoreTypeAliases` option is set to
`true`.

- Fixed a false positive in :doc:`readability-misleading-indentation
<clang-tidy/checks/readability/misleading-indentation>` check when warning would
Expand All @@ -534,7 +529,7 @@ Changes in existing checks
<clang-tidy/checks/readability/redundant-string-cstr>` check to recognise
unnecessary ``std::string::c_str()`` and ``std::string::data()`` calls in
arguments to ``std::print``, ``std::format`` or other functions listed in
the ``StringParameterFunction`` check option.
the `StringParameterFunction` check option.

- Improved :doc:`readability-static-accessed-through-instance
<clang-tidy/checks/readability/static-accessed-through-instance>` check to
Expand Down

0 comments on commit f617aaa

Please sign in to comment.