aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra
AgeCommit message (Expand)AuthorFilesLines
2024-05-06[NFC][clang-tidy]increase stability for bugprone-return-const-ref-from-parame...Congcong Cai1-3/+6
2024-05-05[clang-tidy][docs] Fix modernize-use-std-print docs (#91069)Mike Crowe1-2/+2
2024-05-05[clang-tidy] fix false-positives for templates in `bugprone-return-const-ref-...Julian Schmidt2-4/+122
2024-05-05[clang-tidy] Improve modernize-use-std-print diagnostic (#91071)Mike Crowe1-1/+2
2024-05-03[clang-tidy][NFC] Document CERT rule coverage and aliases for some primary ch...whisperity5-2/+11
2024-05-03[clang-tools-extra,test] Convert text files from CRLF to LFFangrui Song10-158/+158
2024-05-03[clangd] use existing functions for code locations in the scopify enum tweak ...Julian Schmidt1-27/+11
2024-05-03Use FileCheck in new clang-tidy/infrastructure/config-files.cpp testsHans Wennborg1-6/+2
2024-05-03[clang-tidy] Add 'cert-int09-c' alias for 'readability-enum-initial-value' (#...whisperity5-37/+71
2024-05-02[clangd] Remove potential prefix from enum value names (#83412)Christian Kandeler3-22/+108
2024-05-02[clang-tidy] Relax readability-const-return-type (#90560)Piotr Zegar3-20/+25
2024-05-02[clang-tidy] Ignore casts from void to void in bugprone-casting-through-void ...Piotr Zegar3-3/+14
2024-05-02[NFC][clang-tidy] update check list document (#90813)Congcong Cai1-1/+1
2024-05-02[clang-tidy] Enable plugin tests with LLVM_INSTALL_TOOLCHAIN_ONLY (#90370)Igor Kudrin2-25/+22
2024-05-02[analysis] assume expr is not mutated after analysis to avoid recursive (#90581)Congcong Cai1-1/+2
2024-04-30Reapply "[Clang][Sema] Diagnose class member access expressions naming non-ex...Krystian Stasiowski4-5/+19
2024-04-30[clang-tidy] fix false-negative for macros in `readability-math-missing-paren...Julian Schmidt2-7/+31
2024-04-27[clang-tidy][DOC] Minor fixes to release notesPiotr Zegar1-11/+13
2024-04-27[clang-tidy] Enable C23 support in modernize-use-nullptr (#89990)Björn Svensson5-3/+146
2024-04-27[clang-tidy] Ensure nullable variable is not accessed without validity test (...Danny Mösch1-2/+5
2024-04-26Revert "[clang] Enable sized deallocation by default in C++14 onwards (#83774...Vitaly Buka2-3/+11
2024-04-26[C++17] Support __GCC_[CON|DE]STRUCTIVE_SIZE (#89446)Aaron Ballman3-1/+19
2024-04-26[clang-tidy][NFC] Fix broken link in documentation of cert-env33-c (#90216)NagyDonat1-1/+1
2024-04-26[clang] Enable sized deallocation by default in C++14 onwards (#83774)Pengcheng Wang2-11/+3
2024-04-26[PAC][clang] Define `PointerAuthQualifier` and `PointerAuthenticationMode` (#...Daniil Kovalev1-8/+9
2024-04-25LLVM_FALLTHROUGH => [[fallthrough]]. NFCFangrui Song1-1/+1
2024-04-26Revert "[Clang][Sema] Diagnose class member access expressions naming non-exi...Pranav Kant4-19/+5
2024-04-25[Clang][Sema] Diagnose class member access expressions naming non-existent me...Krystian Stasiowski4-5/+19
2024-04-25[clang-tidy] Add clang-tidy check readability-math-missing-parentheses (#84481)Bhuminjay Soni8-0/+289
2024-04-25[clang-tidy] add check to suggest replacement of nested std::min or std::max ...Sopy8-0/+693
2024-04-24[tidy] add new check bugprone-return-const-ref-from-parameter (#89497)Congcong Cai8-0/+148
2024-04-23[clang-tidy][modernize-use-starts-ends-with] Add support for compare() (#89530)Nicolas van Kempen8-22/+162
2024-04-23[clang-tidy] Avoid overflow when dumping unsigned integer values (#85060)ealcdan5-2/+27
2024-04-22[clang-tidy] Improved --verify-config when using literal style in config file...Félix-Antoine Constantin5-45/+45
2024-04-22[clangd] Fix unittests in TargetDeclTest bucket (#89630)zibi21-7/+7
2024-04-21[tidy] update check list [NFC]Congcong Cai1-4/+4
2024-04-20[clang-tidy] bugprone-lambda-function-name ignore macro in captures (#89076)Congcong Cai3-3/+34
2024-04-19Apply modernize-use-starts-ends-with on llvm-project (#89140)Nicolas van Kempen1-2/+2
2024-04-19[clangd] Fix shared-lib builds after 2cdbc9cff3b7ef262Kadir Cetinkaya1-0/+1
2024-04-18[clangd] Propagate context into stdlib indexing thread (#87611)kadir çetinkaya1-1/+7
2024-04-18[clangd] Use TargetOpts from preamble when building ASTs (#88381)kadir çetinkaya4-7/+69
2024-04-18[clang-tidy] fix add_new_check.py regex (#89189)Congcong Cai1-6/+6
2024-04-18[clang-tidy] Ignore deleted ctor in `bugprone-forwarding-reference-overload` ...Mike Weller3-1/+15
2024-04-18[clang][NFC] Fix FieldDecl::isUnnamedBitfield() capitalization (#89048)Timm Baeder3-3/+3
2024-04-17[clang-tidy NFC] Fix a typo in docs for sizeof-expression (#88912)NagyDonat1-1/+1
2024-04-17[clang analysis] ExprMutationAnalyzer support recursive forwarding reference ...Congcong Cai4-7/+25
2024-04-15Revert "[clang analysis] ExprMutationAnalyzer avoid infinite recursion for re...Florian Mayer2-19/+0
2024-04-15[clang-tidy][NFC] Fix `linuxkernel-must-check-errs` documentation file name (...whisperity4-12/+9
2024-04-15[clang analysis] ExprMutationAnalyzer avoid infinite recursion for recursive ...Congcong Cai2-0/+19
2024-04-15Include cmath to fix build error on mac os 10.14 (#88665)Zentrik1-0/+1