aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/readability/EnumInitialValueCheck.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-05-21[clang-tools-extra] Remove redundant control flow statements (NFC) (#140846)Kazu Hirata1-1/+0
2024-10-28[clang-tidy] Do not emit file path for anonymous enums in ↵Discookie1-8/+16
`readability-enum-initial-value` check (#112496) Previously the name of anonymous enums in the check were `enum 'enum (unnamed at /full/path/to/file.c:1:1)'`, which breaks reproducibility of clang-tidy reports when the analyzed project is in a different folder.
2024-09-17[clang-tidy] only diagnose definitions in readability-enum-initial-value ↵Julian Schmidt1-7/+9
(#107652) With the `isDefinition` matcher, the analysis and diagnostics will be constrained to definitions only. Previously forward declarations were diagnosed as well. Fixes #107590
2024-04-01[clang-tidy] add new check readability-enum-initial-value (#86129)Congcong Cai1-0/+200
Fixes: #85243.