aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-09-14[clang-tidy][NFC] Switch to new file header style (#158497)Victor Chernyakin1-1/+1
2024-06-28[clang-tidy] improve messages when auto-fix does not work (#96917)Congcong Cai1-7/+35
2024-05-11[clang-tidy] `readability-simplify-boolean-expr` avoid to warn expression exp...Congcong Cai1-25/+33
2024-01-14[clang-tidy] Add option to ignore macros in `readability-simplify-boolean-exp...Danny Mösch1-1/+9
2023-08-27[clang-tidy][NFC] Fix cppcoreguidelines-init-variables findingsPiotr Zegar1-2/+2
2023-08-27[clang-tidy][NFC] Fix readability-static-accessed-through-instance findingsPiotr Zegar1-2/+2
2023-01-14[clang-tidy][NFC] Use C++17 nested namespaces in the clang-tidy folderCarlos Galvez1-6/+2
2023-01-07[clang-tools-extra] Use std::optional instead of llvm::Optional (NFC)Kazu Hirata1-14/+14
2023-01-07[clang-tools-extra] Add #include <optional> (NFC)Kazu Hirata1-0/+1
2022-12-03[clang-tidy] Use std::nullopt instead of None (NFC)Kazu Hirata1-3/+3
2022-12-02Use CTAD on llvm::SaveAndRestoreJan Svoboda1-1/+1
2022-10-05[clang-tidy] Fix crashes on `if consteval` in readability checksEmilia Dreamer1-4/+6
2022-09-24[clang-tidy] Fix a false positive in readability-simplify-boolean-exprNathan James1-2/+2
2022-05-25[clang-tidy] Extend SimplifyBooleanExpr demorgan support.Nathan James1-2/+10
2022-05-22[clang-tidy] Fix not updating storeOptions after af77b1d9901Nathan James1-0/+1
2022-05-22[clang-tidy] add support for Demorgan conversions to readability-simplify-boo...Nathan James1-1/+261
2022-05-18[clang-tidy] Fix readability-simplify-boolean-expr when Ifs have an init stat...Nathan James1-9/+16
2022-05-18[clang-tidy] Fix readability-simplify-boolean-expr crash with implicit cast i...Nathan James1-41/+6
2022-05-16[clang-tidy][NFC] Reimplement SimplifyBooleanExpr with RecursiveASTVisitorsNathan James1-387/+313
2022-02-12[clang-tidy] SimplifyBooleanExprCheck - use cast<> instead of dyn_cast<> to a...Simon Pilgrim1-3/+3
2022-01-28[clang-tidy] Recognize labelled statements when simplifying boolean exprsRichard1-131/+238
2021-02-27[clang-tidy] Simplify boolean expr checkStephen Kelly1-24/+14
2021-01-29[clang-tidy] Applied clang-tidy fixes. NFCAlexander Kornienko1-11/+11
2020-09-07[Ignore Expressions][NFC] Refactor to better use `IgnoreExpr.h` and nitsEduardo Caldas1-1/+1
2020-08-22[clang-tidy] readability-simplify-boolean-expr detects negated literalsNathan James1-22/+41
2020-06-16[clang-tidy] simplify-bool-expr ignores template instantiationsNathan James1-9/+14
2020-04-12[clang-tidy] Convert config options that are bools to use the bool overload o...Nathan James1-3/+2
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-1/+1
2019-05-16[clang-tidy] Handle member variables in readability-simplify-boolean-exprJonas Toth1-18/+17
2019-03-01Fix file headers. NFCFangrui Song1-1/+1
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-12-21Fix warning about unused variable [NFC]Bjorn Pettersson1-1/+1
2018-12-20[clang-tidy] Use translationUnitDecl() instead of a custom matcher.Alexander Kornienko1-17/+5
2018-11-25A bit of AST matcher cleanup, NFC.Alexander Kornienko1-5/+5
2018-11-15[clang-tidy] Update checks to play nicely with limited traversal scope added ...Sam McCall1-3/+13
2018-08-09Port getLocEnd -> getEndLocStephen Kelly1-2/+2
2018-08-09Port getLocStart -> getBeginLocStephen Kelly1-11/+11
2018-05-22[clang-tidy] SimplifyBoolenExpr doesn't add parens if unary negotiation is of...Zinovy Nis1-0/+3
2017-11-29[clang-tidy] make readability-simplify-bool-expr completely ignore macrosAlexander Kornienko1-4/+1
2017-05-15[clang-tidy] Partly rewrite readability-simplify-boolean-expr using RAVAlexander Kornienko1-105/+98
2016-09-24[clang-tidy] Cleaning up language options.Gabor Horvath1-3/+3
2016-05-31[ASTMatchers] Added ignoringParenImpCasts to has matchersPiotr Padlewski1-1/+2
2016-02-12Reapply r260096.Aaron Ballman1-93/+138
2016-02-08Reverting r260096; it causes build bot failures:Aaron Ballman1-136/+93
2016-02-08Expand the simplify boolean expression check to handle implicit conversion of...Aaron Ballman1-93/+136
2015-12-29[clang-tidy] Fix a use-after-free bug found by asanAlexander Kornienko1-2/+3
2015-12-28[clang-tidy] Preserve comments and preprocessor directives when simplifying b...Alexander Kornienko1-39/+68
2015-09-17Refactors AST matching code to use the new AST matcher names. This patch corr...Aaron Ballman1-22/+25
2015-07-01[clang-tidy] Enhance clang-tidy readability-simplify-boolean-expr...Alexander Kornienko1-27/+230
2015-05-17[clang-tidy] Enhance clang-tidy readability-simplify-boolean-expr check...Alexander Kornienko1-11/+37