..
ArgumentCommentCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
ArgumentCommentCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
AssertSideEffectCheck.cpp
Add support to the misc-assert-side-effect check for MSVC-style assert macros, which use !! instead of an if statement or a conditional operator.
2016-01-25 20:00:53 +00:00
AssertSideEffectCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
AssignOperatorSignatureCheck.cpp
Make a bunch of static arrays const.
2015-10-18 05:14:41 +00:00
AssignOperatorSignatureCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
BoolPointerImplicitConversionCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
BoolPointerImplicitConversionCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
CMakeLists.txt
[clang-tidy] Add a check to find unintended semicolons that changes the semantics.
2016-02-11 09:23:33 +00:00
DefinitionsInHeadersCheck.cpp
[clang-tidy] Some improvements in 'misc-definitions-in-headers' check.
2016-02-08 16:05:39 +00:00
DefinitionsInHeadersCheck.h
[clang-tdiy] Add header file extension configuration support.
2016-02-05 11:23:59 +00:00
InaccurateEraseCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
InaccurateEraseCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
IncorrectRoundings.cpp
[clang-tidy] Correct IncorrectRoundings namespace.
2016-02-08 15:54:30 +00:00
IncorrectRoundings.h
[clang-tidy] Correct IncorrectRoundings namespace.
2016-02-08 15:54:30 +00:00
InefficientAlgorithmCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
InefficientAlgorithmCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
MacroParenthesesCheck.cpp
[clang-tidy] misc-macro-parentheses: fix fp when using object member pointers
2015-11-10 14:32:25 +00:00
MacroParenthesesCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
MacroRepeatedSideEffectsCheck.cpp
[clang-tidy] Enhance clang-tidy misc-macro-repeated-side-effects...
2015-07-02 07:49:55 +00:00
MacroRepeatedSideEffectsCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
MiscTidyModule.cpp
[clang-tidy] Add a check to find unintended semicolons that changes the semantics.
2016-02-11 09:23:33 +00:00
MisplacedWideningCastCheck.cpp
[clang-tidy] Fix failure in 'misc-misplaced-widening-cast' test.
2016-02-12 09:38:38 +00:00
MisplacedWideningCastCheck.h
[clang-tidy] Add 'misc-misplaced-widening-cast' check.
2016-02-09 14:08:49 +00:00
MoveConstantArgumentCheck.cpp
[clang-tidy] Fix a typo in my latest commit.
2015-11-25 16:38:22 +00:00
MoveConstantArgumentCheck.h
[clang-tidy] Const std::move() argument ClangTidy check
2015-11-25 15:56:11 +00:00
MoveConstructorInitCheck.cpp
Disable part of the misc-move-constructor-init checker when the check is enabled through cert-oop11-cpp. The CERT guideline does not cover moveable parameters as part of the OOP11-CPP recommendation, just copy construction from move constructors.
2016-01-08 15:50:51 +00:00
MoveConstructorInitCheck.h
Disable part of the misc-move-constructor-init checker when the check is enabled through cert-oop11-cpp. The CERT guideline does not cover moveable parameters as part of the OOP11-CPP recommendation, just copy construction from move constructors.
2016-01-08 15:50:51 +00:00
NewDeleteOverloadsCheck.cpp
[clang-tidy] Fix a crash in misc-new-delete-overloads
2015-12-16 10:58:14 +00:00
NewDeleteOverloadsCheck.h
Adding a checker (misc-new-delete-overloads) that detects mismatched overloads of operator new and operator delete. Corresponds to the CERT C++ secure coding rule: https://www.securecoding.cert.org/confluence/display/cplusplus/DCL54-CPP.+Overload+allocation+and+deallocation+functions+as+a+pair+in+the+same+scope
2015-09-29 13:12:21 +00:00
NoexceptMoveConstructorCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
NoexceptMoveConstructorCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
NonCopyableObjects.cpp
Make a bunch of static arrays const.
2015-10-18 05:14:41 +00:00
NonCopyableObjects.h
Adding a checker (misc-non-copyable-objects) that detects situations where a non-copyable C type is being dereferenced, such as FILE or pthread_mutex_t. Corresponds to the CERT C++ secure coding rule: https://www.securecoding.cert.org/confluence/display/c/FIO38-C.+Do+not+copy+a+FILE+object
2015-09-30 14:09:38 +00:00
SizeofContainerCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
SizeofContainerCheck.h
[clang-tidy] Add misc-sizeof-container check to find sizeof() uses on stl
2015-09-10 16:37:46 +00:00
StaticAssertCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
StaticAssertCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
StringIntegerAssignmentCheck.cpp
[clang-tidy] Check for suspicious string assignments.
2015-12-15 08:47:20 +00:00
StringIntegerAssignmentCheck.h
[clang-tidy] Check for suspicious string assignments.
2015-12-15 08:47:20 +00:00
SuspiciousSemicolonCheck.cpp
[clang-tidy] Add a check to find unintended semicolons that changes the semantics.
2016-02-11 09:23:33 +00:00
SuspiciousSemicolonCheck.h
[clang-tidy] Add a check to find unintended semicolons that changes the semantics.
2016-02-11 09:23:33 +00:00
SwappedArgumentsCheck.cpp
[clang-tidy] Refactor: Move misc clang-tidy checks to namespace clang::tidy::misc
2015-03-02 12:25:03 +00:00
SwappedArgumentsCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
ThrowByValueCatchByReferenceCheck.cpp
Add a new checker that tests whether a throw expression throws by value, and whether a catch statement catches by reference.
2015-10-09 20:42:44 +00:00
ThrowByValueCatchByReferenceCheck.h
Add a new checker that tests whether a throw expression throws by value, and whether a catch statement catches by reference.
2015-10-09 20:42:44 +00:00
UndelegatedConstructor.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
UndelegatedConstructor.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
UniqueptrResetReleaseCheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
UniqueptrResetReleaseCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
UnusedAliasDeclsCheck.cpp
Using an early return as it is more clear; NFC.
2015-08-31 15:28:57 +00:00
UnusedAliasDeclsCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
UnusedParametersCheck.cpp
clang-tidy: [misc-unused-parameters] Ignore template instantiations.
2016-02-03 11:33:18 +00:00
UnusedParametersCheck.h
[clang-tidy] Update docs for clang-tidy checks. NFC
2015-08-27 18:01:58 +00:00
UnusedRAIICheck.cpp
Refactors AST matching code to use the new AST matcher names. This patch correlates to r247885 which performs the AST matcher rename in Clang.
2015-09-17 13:31:25 +00:00
UnusedRAIICheck.h
[clang-tidy] Updated misc-unused-raii documentation.
2015-09-25 17:50:11 +00:00
VirtualNearMissCheck.cpp
Merge branch 'arcpatch-D16922'
2016-02-11 16:03:27 +00:00
VirtualNearMissCheck.h
Merge branch 'arcpatch-D16922'
2016-02-11 16:03:27 +00:00