aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/test/clang-tidy
AgeCommit message (Expand)AuthorFilesLines
2024-06-20[Clang] [Sema] Diagnose unknown std::initializer_list layout in SemaInit (#95...Mital Ashok5-4/+9
2024-06-18[llvm] Remove the Legacy PM Hello example (#95708)Andrzej Warzyński1-1/+1
2024-06-18Revert "[clang-tidy] fix false positives for the functions with the same name...Kadir Cetinkaya1-8/+0
2024-06-16[clang-tidy] fix false negatives for performance-inefficient-vector-operation...Congcong Cai1-0/+35
2024-06-15[clang-tidy]fix false positives of the result of std::move() is used as rvalu...Congcong Cai1-5/+9
2024-06-15[clang-tidy] avoid false positive when overload for bugprone-return-const-ref...Congcong Cai1-0/+34
2024-06-13[clang-tidy] ignoring macro with hash preprocessing token in cppcoreguideline...Congcong Cai1-0/+4
2024-06-11[clang-tidy] fix false positives for the functions with the same name as stan...Congcong Cai1-0/+8
2024-06-11[clang-tidy] Improve sizeof(pointer) handling in bugprone-sizeof-expression (...Donát Nagy3-27/+299
2024-06-10[clang-tidy] `doesNotMutateObject`: Handle calls to member functions … (#94...Clement Courbet1-2/+27
2024-06-09[clang-tidy] Improve bugprone-multi-level-implicit-pointer-conversion (#94524)Piotr Zegar1-0/+12
2024-06-09[clang-tidy] Extend modernize-use-designated-initializers with new options (#...Piotr Zegar1-4/+4
2024-06-09[clang-tidy] Ignore implicit functions in readability-implicit-bool-conversio...Piotr Zegar1-0/+31
2024-06-09[clang-tidy] Ignore non-math operators in readability-math-missing-parenthese...Piotr Zegar1-0/+17
2024-06-08[clang-tidy] new check misc-use-internal-linkage (#90830)Congcong Cai6-0/+87
2024-06-07[clang-tidy]fix crashing when self include cycles for misc-header-include-cyc...Congcong Cai1-0/+3
2024-06-06[clang-tidy] Fix crash in readability-container-size-empty (#94527)Piotr Zegar1-0/+6
2024-06-05[clang-tidy] Fix handling of members in readability-redundant-member-init (#9...Piotr Zegar1-0/+16
2024-06-03[clang-tidy] Fix assert in modernize-use-std-format/print (#94104)Mike Crowe2-4/+40
2024-05-30[clang-tidy] Check number of arguments to size/length in readability-containe...Piotr Zegar1-0/+28
2024-05-23[clang-tidy] Correcting issues in `readability-implicit-bool-conversion` on C...Björn Svensson1-0/+354
2024-05-22Reland "[clang] Enable sized deallocation by default in C++14 onwards" (#90373)Pengcheng Wang1-10/+0
2024-05-21[clang-tidy] Rename out-of-line function definitions (#91954)Edwin Vane1-0/+30
2024-05-20[Clang][Sema] Diagnose current instantiation used as an incomplete base class...Krystian Stasiowski2-6/+8
2024-05-16[clang] Fix CXXNewExpr end source location for 'new struct S' (#92266)Arseniy Zaostrovnykh1-5/+2
2024-05-15[clang-tidy] Add AllowImplicitlyDeletedCopyOrMove option to cppcoreguidelines...Piotr Zegar1-3/+23
2024-05-15[clang-tidy] Fix crash in modernize-use-constraints (#92019)Piotr Zegar1-0/+32
2024-05-15[clang-tidy] fix crash due to assumed callee in min-max-use-initializer-list ...Julian Schmidt1-0/+21
2024-05-14Add option to exclude headers from clang-tidy analysis (#91400)Justin Cady5-1/+24
2024-05-14[clang-tidy] support expect no diagnosis test (#91293)Congcong Cai3-12/+28
2024-05-13[clang-tidy] Add modernize-use-std-format check (#90397)Mike Crowe3-0/+196
2024-05-13[clang-tidy] Ignore unevaluated context in bugprone-optional-value-conversion...Piotr Zegar1-0/+2
2024-05-13[clang-tidy] Ignore `if consteval` in else-after-return (#91588)Jover1-0/+17
2024-05-11[clang-tidy] `readability-simplify-boolean-expr` avoid to warn expression exp...Congcong Cai1-4/+14
2024-05-09[NFC][clang-tidy] remove magic-numbers-todo.cpp (#91577)Congcong Cai1-15/+0
2024-05-09[clang-tidy] check `std::string_view` and custom string-like classes in `read...Vadim D3-0/+68
2024-05-08[clang-tidy] Handle expr with side-effects in readability-static-accessed-thr...Piotr Zegar1-7/+31
2024-05-08[clang-tidy] Handle implicit casts in hicpp-signed-bitwise for IgnorePositive...Piotr Zegar1-0/+3
2024-05-05[clang-tidy] fix false-positives for templates in `bugprone-return-const-ref-...Julian Schmidt1-1/+115
2024-05-03[clang-tools-extra,test] Convert text files from CRLF to LFFangrui Song4-39/+39
2024-05-03Use FileCheck in new clang-tidy/infrastructure/config-files.cpp testsHans Wennborg1-6/+2
2024-05-02[clang-tidy] Relax readability-const-return-type (#90560)Piotr Zegar1-3/+17
2024-05-02[clang-tidy] Ignore casts from void to void in bugprone-casting-through-void ...Piotr Zegar1-0/+7
2024-04-30Reapply "[Clang][Sema] Diagnose class member access expressions naming non-ex...Krystian Stasiowski2-0/+14
2024-04-30[clang-tidy] fix false-negative for macros in `readability-math-missing-paren...Julian Schmidt1-0/+22
2024-04-27[clang-tidy] Enable C23 support in modernize-use-nullptr (#89990)Björn Svensson2-1/+140
2024-04-26Revert "[clang] Enable sized deallocation by default in C++14 onwards (#83774...Vitaly Buka1-0/+10
2024-04-26[clang] Enable sized deallocation by default in C++14 onwards (#83774)Pengcheng Wang1-10/+0
2024-04-26Revert "[Clang][Sema] Diagnose class member access expressions naming non-exi...Pranav Kant2-14/+0
2024-04-25[Clang][Sema] Diagnose class member access expressions naming non-existent me...Krystian Stasiowski2-0/+14