aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/modernize/LoopConvertUtils.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-06-09[clang-tidy][NFC] run clang-format over clang-tidy checks and tool code. (#14...Baranov Victor1-3/+2
2025-05-25[clang-tidy] Remove unused includes (NFC) (#141420)Kazu Hirata1-2/+0
2024-10-03[clang-tidy] loop convert can handle lambda init capture (#109159)Congcong Cai1-10/+15
2023-12-13[clang-tidy] Use StringRef::{starts,ends}_with (NFC)Kazu Hirata1-2/+2
2023-11-05[clang][NFC] Refactor `CXXConstructExpr::ConstructionKind`Vlad Serebrennikov1-1/+1
2023-08-27[clang-tidy][NFC] Fix modernize-use-default-member-init findingsPiotr Zegar1-4/+2
2023-08-27[clang-tidy][NFC] Fix readability-inconsistent-declaration-parameter-name fin...Piotr Zegar1-3/+3
2023-05-15[clang-tidy] Extract areStatementsIdenticalPiotr Zegar1-7/+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-1/+1
2023-01-07[clang-tools-extra] Add #include <optional> (NFC)Kazu Hirata1-0/+1
2022-08-04[Clang][C++20] Support capturing structured bindings in lambdasCorentin Jabot1-2/+2
2022-08-03Revert "[Clang][C++20] Support capturing structured bindings in lambdas"Corentin Jabot1-2/+2
2022-08-03[Clang][C++20] Support capturing structured bindings in lambdasCorentin Jabot1-2/+2
2022-02-08[C++2b] Implement multidimentional subscript operatorCorentin Jabot1-2/+2
2021-11-15Fix an unused variable warningKirstóf Umann1-1/+1
2021-11-15[clang-tidy] Fix a crash in modernize-loop-convert around conversion operatorsKristóf Umann1-5/+11
2021-01-29[clang-tidy] Applied clang-tidy fixes. NFCAlexander Kornienko1-4/+4
2020-07-22Fix the clang-tidy build after get/isIntegerConstantExpressionHaojian Wu1-3/+4
2020-07-06Removed a RecursiveASTVisitor feature to visit operator kinds with different ...Dmitri Gribenko1-1/+1
2020-06-20Update comment to be more clear.Eric Christopher1-1/+1
2020-06-19As part of using inclusive language within the llvm project,Eric Christopher1-1/+1
2020-04-05[clang-tools-extra] NFC: Fix trivial typo in documents and commentsKazuaki Ishizaki1-1/+1
2020-01-28Make llvm::StringRef to std::string conversions explicit.Benjamin Kramer1-4/+4
2020-01-02Fix trivial typos in comments; NFCKazuaki Ishizaki1-1/+1
2019-11-19[NFC] Refactor representation of materialized temporariesTyker1-1/+1
2019-11-17Revert "[NFC] Refactor representation of materialized temporaries"Nico Weber1-1/+1
2019-11-16[NFC] Refactor representation of materialized temporariesTyker1-1/+1
2019-08-22Remove \brief commands from doxygen comments.Dmitri Gribenko1-32/+32
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2016-12-13Remove trailing whitespace in docs and clang-tidy sources.Alexander Kornienko1-1/+1
2016-11-29Fix some Clang-tidy modernize-use-default and Include What You Use warnings; ...Eugene Zelenko1-4/+17
2016-08-17Adapt to TraverseLambdaCapture interface change from D23204Martin Bohme1-2/+3
2016-08-01[clang-tidy] Prepare modernize-loop-convert for upcoming changes in D22566Martin Bohme1-0/+12
2016-06-21Fix clang-tidy patterns to adapt to newly added ExprWithCleanups nodes.Tim Shen1-1/+1
2016-06-15[clang-tidy] Remove dead code. NFC.Benjamin Kramer1-14/+0
2016-03-14[clang-tidy] Fix "Name is not a simple identifier" assertion in `modernize-lo...Haojian Wu1-2/+2
2016-02-16[clang-tidy] Fix an assert failure in `modernize-loop-convert`.Haojian Wu1-1/+3
2016-02-08[clang-tidy] Fix assertion failure on `at` function in modernize-loop-convert.Haojian Wu1-2/+2
2015-11-06Allow the alias to be of a different type.Angel Garcia Gomez1-12/+18
2015-11-06Use the old index identifier by default, instead of 'elem'.Angel Garcia Gomez1-48/+1
2015-11-06Avoid naming conflicts with the old index in modernize-loop-convert.Angel Garcia Gomez1-5/+6
2015-10-03Replace double negation of !FileID.isInvalid() with FileID.isValid().Yaron Keren1-1/+1
2015-10-02Handle trailing underscores on modernize-loop-convert variable namer.Angel Garcia Gomez1-0/+11
2015-09-24Add NamingStyle option to modernize-loop-convert.Angel Garcia Gomez1-19/+56
2015-09-11Another patch for modernize-loop-convert.Angel Garcia Gomez1-2/+5
2015-09-08Avoid using rvalue references with trivially copyable types.Angel Garcia Gomez1-3/+5
2015-09-04Avoid repeated replacements on loop-convert check.Angel Garcia Gomez1-9/+18
2015-09-03Two more fixes to loop convert.Angel Garcia Gomez1-2/+48
2015-09-02Fix loop-convert crash.Angel Garcia Gomez1-1/+4