summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/utils
Commit message (Expand)AuthorAgeFilesLines
* Fix MSVC "not all control paths return a value" warning. NFCI.Simon Pilgrim2020-01-061-0/+1
* NFC: Fix trivial typos in commentsKazuaki Ishizaki2020-01-042-2/+2
* [clang-tidy] fix linkage with clangSema for FixitHintUtils, undo previous wro...Jonas Toth2020-01-031-0/+1
* [clang-tidy] implement utility-function to add 'const' to variablesJonas Toth2020-01-034-3/+230
* [NFC] Fixes -Wrange-loop-analysis warningsMark de Wever2020-01-012-2/+2
* Fix readability-const-return-type identifying the wrong `const` tokenIlya Mirsky2019-12-242-17/+30
* [clang-tidy] modernize-use-equals-default avoid adding redundant semicolonsMitchell Balan2019-11-202-0/+15
* [libTooling] Further simplify `Stencil` type and introduce `MatchComputation`.Yitzhak Mandelbaum2019-11-111-1/+1
* [clang-tidy] Update TransformerClangTidyCheck to use new Transformer bindings.Yitzhak Mandelbaum2019-11-062-9/+9
* [clang-tidy] New checker performance-trivially-destructible-checkAnton Bikineev2019-11-013-1/+22
* [libTooling] Move Transformer files to their own directory/library.Yitzhak Mandelbaum2019-10-102-2/+2
* [clang-tidy] Fix a potential infinite loop in readability-isolate-declaration...Haojian Wu2019-09-181-0/+6
* [clang-tidy] Fix bug in bugprone-use-after-move checkYitzhak Mandelbaum2019-09-091-5/+12
* [clang-tidy] Fix the potential infinite loop in recordIsTriviallyDefaultConst...Haojian Wu2019-08-281-0/+4
* [clang-tidy] TransformerClangTidyCheck: change choice of location for diagnos...Yitzhak Mandelbaum2019-08-261-11/+5
* Remove \brief commands from doxygen comments.Dmitri Gribenko2019-08-226-16/+16
* [clang-tools-extra] Migrate llvm::make_unique to std::make_uniqueJonas Devlieghere2019-08-144-6/+6
* [clang-tidy] Update `TransformerClangTidyCheck` to use new `buildMatchers` fu...Yitzhak Mandelbaum2019-08-131-1/+2
* [clang-tidy] Extend TransformerClangTidyCheck to support adding includes.Yitzhak Mandelbaum2019-07-022-0/+27
* [clang-tidy] Fix NDEBUG build [NFC]Mikael Holmen2019-06-271-0/+2
* [clang-tidy] Generalize TransformerClangTidyCheck to take a rule generator.Yitzhak Mandelbaum2019-06-262-12/+46
* [clang-tidy] Fix unused-variable warning after r361647.Haojian Wu2019-05-271-6/+7
* Rename clangToolingRefactor to clangToolingRefactoring for consistency with i...Nico Weber2019-05-251-1/+1
* [clang-tidy] In TransformerClangTidyCheck, require Explanation field.Yitzhak Mandelbaum2019-05-242-11/+24
* [clang-tidy] Add support for writing a check as a Transformer rewrite rule.Yitzhak Mandelbaum2019-05-223-0/+114
* [clang-tidy] openmp-exception-escape - a new checkRoman Lebedev2019-03-222-0/+13
* [NFC] ExceptionEscapeCheck: small refactoringRoman Lebedev2019-03-222-1/+20
* [clang-tidy] Move all checks to the new registerPPCallbacks APIAlexander Kornienko2019-03-223-10/+11
* Fix file headers. NFCFangrui Song2019-03-011-1/+1
* [clang-tidy] undo bitfields in ExceptionAnalyzerJonas Toth2019-02-261-4/+2
* Attempt to fix VS2015 build breakage from r354517. NFCI.Douglas Yung2019-02-211-1/+1
* [clang-tidy] refactor ExceptionAnalyzer further to give ternary answerJonas Toth2019-02-202-82/+268
* [clang-tidy] refactor bugprone-exception-escape analysis into classJonas Toth2019-01-313-0/+203
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-1927-108/+81
* [clang-tidy] Fixed code sample in a comment. NFCAlexander Kornienko2018-11-021-4/+6
* [clang-tidy] .reset(new X) -> make_unique<X>() in a comment. NFCAlexander Kornienko2018-11-021-2/+2
* Implement the readability-const-return-type check.Aaron Ballman2018-10-312-0/+36
* [clang-tidy] new check 'readability-isolate-declaration'Jonas Toth2018-10-312-0/+121
* [clang-tidy] Re-commit: Add new 'readability-uppercase-literal-suffix' check ...Roman Lebedev2018-10-262-0/+38
* [clang-tidy] Revert my readability-uppercase-literal-suffix check.Roman Lebedev2018-10-252-38/+0
* [clang-tidy] Add new 'readability-uppercase-literal-suffix' check (CERT DCL16...Roman Lebedev2018-10-182-0/+38
* [clang-tidy] White List Option for performance-unnecessary-value-param, perfo...Adam Balogh2018-10-121-0/+7
* [clang-tidy] NFC refactor lexer-utils to be usable without ASTContextJonas Toth2018-10-053-12/+9
* [clang-tidy] Sequence statements with multiple parents correctly (PR39149)Martin Bohme2018-10-042-4/+11
* [clangtidy] Remove old copy of ExprMutationAnalyzerShuai Wang2018-09-113-370/+0
* [clang-tidy] Handle sugared reference types in ExprMutationAnalyzerShuai Wang2018-09-111-8/+9
* [clang-tidy] Handle unique owning smart pointers in ExprMutationAnalyzerShuai Wang2018-09-111-2/+40
* Revert "Revert "[clang-tidy] Handle unresolved expressions in ExprMutationAna...Shuai Wang2018-09-111-6/+20
* Revert "[clang-tidy] Handle unresolved expressions in ExprMutationAnalyzer"Shuai Wang2018-09-101-20/+6
* [clang-tidy] ExprMutationAnalyzer: construct from references. Fixes PR38888Roman Lebedev2018-09-102-11/+11
OpenPOWER on IntegriCloud