diff options
author | Piotr Zegar <me@piotrzegar.pl> | 2023-12-25 18:57:25 +0000 |
---|---|---|
committer | Piotr Zegar <me@piotrzegar.pl> | 2023-12-25 20:33:19 +0000 |
commit | 9e98f8d7ac11c63768b1ed69c11ea75c8b794063 (patch) | |
tree | f18258b5806f40f5b102513627085c7a83cd3472 | |
parent | f5f2c313ae3dfe29638a3794f75a8ad3ccbc5f4e (diff) | |
download | llvm-9e98f8d7ac11c63768b1ed69c11ea75c8b794063.zip llvm-9e98f8d7ac11c63768b1ed69c11ea75c8b794063.tar.gz llvm-9e98f8d7ac11c63768b1ed69c11ea75c8b794063.tar.bz2 |
[clng-tidy][NFC] Update documentation for readability-simplify-subscript-expr
Add release notes and mention ::std::span in documentation.
Change is related to #76116.
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 6e7554e..c843efa 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -458,6 +458,10 @@ Changes in existing checks <clang-tidy/checks/readability/non-const-parameter>` check to ignore false-positives in initializer list of record. +- Improved :doc:`readability-simplify-subscript-expr + <clang-tidy/checks/readability/simplify-subscript-expr>` check by extending + the default value of the `Types` option to include ``std::span``. + - Improved :doc:`readability-static-accessed-through-instance <clang-tidy/checks/readability/static-accessed-through-instance>` check to identify calls to static member functions with out-of-class inline definitions. |