..
AvoidGotoCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
AvoidGotoCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
AvoidNonConstGlobalVariablesCheck.cpp
Add CppCoreGuidelines I.2 "Avoid non-const global variables" check
2020-03-13 10:05:13 -04:00
AvoidNonConstGlobalVariablesCheck.h
Add CppCoreGuidelines I.2 "Avoid non-const global variables" check
2020-03-13 10:05:13 -04:00
CMakeLists.txt
Add CppCoreGuidelines I.2 "Avoid non-const global variables" check
2020-03-13 10:05:13 -04:00
CppCoreGuidelinesTidyModule.cpp
Add CppCoreGuidelines I.2 "Avoid non-const global variables" check
2020-03-13 10:05:13 -04:00
InitVariablesCheck.cpp
[clang-tidy] Change checks that take enum configurations to use a new access method.
2020-04-07 20:04:31 +01:00
InitVariablesCheck.h
Add the misc-init-local-variables check.
2019-10-02 17:18:57 +00:00
InterfacesGlobalInitCheck.cpp
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
InterfacesGlobalInitCheck.h
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
MacroUsageCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
MacroUsageCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
NarrowingConversionsCheck.cpp
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
NarrowingConversionsCheck.h
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
NoMallocCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
NoMallocCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
OwningMemoryCheck.cpp
[clang-tools-extra] NFC: Fix trivial typo in documents and comments
2020-04-05 15:28:40 +09:00
OwningMemoryCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProBoundsArrayToPointerDecayCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProBoundsArrayToPointerDecayCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProBoundsConstantArrayIndexCheck.cpp
[clang-tidy] Change checks that take enum configurations to use a new access method.
2020-04-07 20:04:31 +01:00
ProBoundsConstantArrayIndexCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProBoundsPointerArithmeticCheck.cpp
[NFC] use hasAnyOperatorName and hasAnyOverloadedOperatorName functions in clang-tidy matchers
2020-03-10 00:42:21 +00:00
ProBoundsPointerArithmeticCheck.h
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
ProTypeConstCastCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeConstCastCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeCstyleCastCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeCstyleCastCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeMemberInitCheck.cpp
[clang-tools-extra] NFC: Fix trivial typo in documents and comments
2020-04-05 15:28:40 +09:00
ProTypeMemberInitCheck.h
[clang-tools-extra] NFC: Fix trivial typo in documents and comments
2020-04-05 15:28:40 +09:00
ProTypeReinterpretCastCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeReinterpretCastCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeStaticCastDowncastCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeStaticCastDowncastCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeUnionAccessCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeUnionAccessCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeVarargCheck.cpp
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
ProTypeVarargCheck.h
[clang-tidy] Change checks to use new isLanguageVersionSupported restriction
2020-03-03 16:43:45 +00:00
SlicingCheck.cpp
NFC: Fix trivial typos in comments
2020-01-04 10:28:41 -05:00
SlicingCheck.h
Update the file headers across all of the LLVM projects in the monorepo
2019-01-19 08:50:56 +00:00
SpecialMemberFunctionsCheck.cpp
Add AllowMissingMoveFunctionsWhenCopyIsDeleted flag to cppcoreguidelines-special-member-functions
2020-03-16 08:14:48 -04:00
SpecialMemberFunctionsCheck.h
Add AllowMissingMoveFunctionsWhenCopyIsDeleted flag to cppcoreguidelines-special-member-functions
2020-03-16 08:14:48 -04:00