aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra
AgeCommit message (Expand)AuthorFilesLines
2024-01-19[clang-apply-replacements] Deduplicate Implementation of `collectReplacements...Daniil Dudkin2-45/+28
2024-01-19[clangd] Don't collect templated decls for builtin templates (#78466)Younan Zhang2-3/+37
2024-01-18[Clang][NFC] Rename CXXMethodDecl::isPure -> is VirtualPure (#78463)cor3ntin4-7/+8
2024-01-18[clangd] Handle an expanded token range that ends in the `eof` token in Token...Nathan Ridge1-0/+11
2024-01-16[clang-tidy] Fix missing parentheses in readability-implicit-bool-conversion ...Piotr Zegar7-109/+140
2024-01-16[NFC][clang-tidy]improve performance for misc-unused-using-decls check (#78231)Congcong Cai2-4/+11
2024-01-16[clang-tidy] Handle C++ structured bindings in `performance-for-range-copy` (...Clement Courbet3-8/+40
2024-01-15[modularize] Use SmallString::operator std::string (NFC)Kazu Hirata1-2/+2
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 Cai8-0/+140
2024-01-15[clang-tidy]fix readability-implicit-bool-conversion false-positives when com...Congcong Cai3-4/+7
2024-01-14[clang-doc] Use SmallString::operator std::string (NFC)Kazu Hirata1-1/+1
2024-01-14[clang-tidy] Use StringRef::consume_front (NFC)Kazu Hirata1-5/+1
2024-01-14[clang-tidy] Fix false-positives in readability-container-size-empty (#74140)Piotr Zegar3-11/+83
2024-01-14[clang-tidy] Add support for in-class initializers in readability-redundant-m...Piotr Zegar4-23/+109
2024-01-14[clang-tidy][DOC] Fix some speling mistakes in release notesPiotr Zegar1-16/+16
2024-01-14Fix #75686: add iter_swap and iter_move to the matched name (#76117)Da-Viper7-12/+40
2024-01-14[clang-tidy] Add option to ignore macros in `readability-simplify-boolean-exp...Danny Mösch5-3/+42
2024-01-13[clang-tidy] Invalid Fix-It generated for implicit-widening-multiplication-r...Félix-Antoine Constantin5-16/+31
2024-01-12[clang-tidy] Use StringRef::ltrim (NFC)Kazu Hirata1-1/+1
2024-01-13[NFC]fix incorrect autosar link in clang-tidy docCongcong Cai1-1/+1
2024-01-13[NFC]update autosar link in clang-tidy docCongcong Cai2-1/+4
2024-01-12[clang-tidy] Fix false-positives in misc-static-assert caused by non-constexp...Piotr Zegar3-2/+56
2024-01-12[clangd] Use starts_with instead of startswith in CompileCommands.cpp (NFC)Jie Fu1-1/+1
2024-01-12[clangd] Fix sysroot flag handling in CommandMangler to prevent duplicates (#...Kon2-13/+91
2024-01-11[clangd] Handle lambda scopes inside Node::getDeclContext() (#76329)Younan Zhang3-0/+39
2024-01-10[clang-query] Use StringRef::ltrim (NFC)Kazu Hirata1-6/+3
2024-01-10[emacs] Fix Emacs library formatting (#76110)darkfeline1-0/+1
2024-01-09Revert "[PGO] Exposing PGO's Counter Reset and File Dumping APIs (#76471)"Vitaly Buka1-1/+1
2024-01-09[clangd] Fix typo in function name in AST.cpp (#77504)Nour12481-6/+6
2024-01-09[clang-tidy] Improve performance of misc-const-correctness (#72705)Piotr Zegar1-1/+2
2024-01-09[PGO] Exposing PGO's Counter Reset and File Dumping APIs (#76471)Qiongsi Wu1-1/+1
2024-01-09[clang-tidy]unused using decls only check cpp files (#77335)Congcong Cai2-1/+4
2024-01-06[clang-tidy] fix false positive in cppcoreguidelines-missing-std-forward (#77...Qizhi Hu3-5/+90
2024-01-06[clang-tidy] Add check `readability-avoid-return-with-void-value` (#76249)Danny Mösch8-0/+232
2024-01-05[include-cleaner] Fix a race issue when editing multiple files. (#76960)Haojian Wu1-27/+31
2024-01-04[clang-tidy][NFC] Code format - leftover after #66169Piotr Zegar1-3/+2
2024-01-04[clang-tidy] Fix bug in modernize-use-emplace (#66169)Chris Cotter3-5/+28
2024-01-04Reapply "[Clang][Sema] Diagnose unexpanded packs in the template argument lis...Krystian Stasiowski1-1/+1
2024-01-04[clangd] Dont require confirmation for include-cleaner batch-fixes (#76826)kadir çetinkaya2-99/+1
2024-01-03[clangd] check for synthesized symbols when tracking include locations (#75128)Matheus Izvekov2-4/+19
2024-01-03[clangd] Track IWYU pragmas for non-preamble includes (#75612)kadir çetinkaya12-32/+63
2024-01-03[coroutines] Do not check coroutine wrappers for skipped function bodies (#76...Utkarsh Saxena1-0/+56
2024-01-02[clang-tidy][DOC] Generate documentation for new Clang-Analyzer checksPiotr Zegar5-0/+57
2023-12-29[clangd] Avoid crash when summarizing pointer-to-member expr for block-end hi...Nathan Ridge2-1/+14
2023-12-27[clang-tidy][misleading-indentation]ignore false-positives for line started w...Congcong Cai4-4/+34
2023-12-26[clang-tidy] Treat fields in anonymous records as names in enclosing scope wh...Sirui Mu7-93/+398
2023-12-26[clang-tidy] Fix compilation of modernize-use-using checkPiotr Zegar1-1/+1
2023-12-26[clang-tidy] Don't replace typedefs in extern c scope (#69102)Da-Viper6-7/+72
2023-12-26Revert "[clang-tidy] Don't replace typedefs in extern c scope (#69102)"Piotr Zegar6-72/+7