diff options
Diffstat (limited to 'clang-tools-extra/docs/ReleaseNotes.rst')
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index edc158499dc..be79ce7dc47 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -230,6 +230,11 @@ Improvements to clang-tidy If set to true, the check will provide fix-its with literal initializers (``int i = 0;``) instead of curly braces (``int i{};``). +- New :doc:`readability-convert-member-functions-to-static + <clang-tidy/checks/readability-convert-member-functions-to-static>` check. + + Finds non-static member functions that can be made ``static``. + Improvements to include-fixer ----------------------------- |