aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/readability/AvoidNestedConditionalOperatorCheck.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-01-16[NFC]add - at the beginning for alignmentCongcong Cai1-1/+1
2024-01-15[clang-tidy]Add new check readability-avoid-nested-conditional-operator (#78022)Congcong Cai1-0/+52
Finds nested conditional operator. Nested conditional operators lead code hard to understand, so they should be splited as several statement and stored in temporary varibale.