Index accessing checks are not performed for aliases
of std::array, as only std::array itself seems to be checked.
This patchs aims to extend it for aliases such as:
using MyArray = std::array<int, 10>;
Differential D154297
clang-tidy: accessing checks not done for aliases of `std::array` sousajo on Jul 2 2023, 1:30 AM. Authored by
Details Index accessing checks are not performed for aliases This patchs aims to extend it for aliases such as:
Diff Detail Event TimelineComment Actions Looks good, probably hasCanonicalType would be sufficient but hasUnqualifiedDesugaredType will also do a job. Comment Actions Thanks ^^ added the release note. Can someone please land it for me? Jorge Pinto Sousa <jorge.pinto.sousa@proton.me> Comment Actions while landing it, if someone feels that the release note can/should be reworded please feel free to do so. |