diff options
Diffstat (limited to 'clang-tools-extra/docs/ReleaseNotes.rst')
| -rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 4a7fef5bb03..40b7aed4178 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -147,6 +147,12 @@ Improvements to clang-tidy Finds classes, structs, and unions that contain redundant member access specifiers. +- New :doc:`readability-make-member-function-const + <clang-tidy/checks/readability-make-member-function-const>` check. + + Finds non-static member functions that can be made ``const`` + because the functions don't use ``this`` in a non-const way. + Improvements to include-fixer ----------------------------- |

