aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp
diff options
context:
space:
mode:
authorNathan James <n.james93@hotmail.co.uk>2021-03-16 14:03:29 +0000
committerNathan James <n.james93@hotmail.co.uk>2021-03-16 14:03:33 +0000
commit9a5af541ee058b85a92113ecf9d38a06ef2b313d (patch)
treee16d25f51973c1d1540a15f88442fcffed83a8fe /clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp
parentf51427afb5333e5dd2eb04ea4630037667c64553 (diff)
downloadllvm-9a5af541ee058b85a92113ecf9d38a06ef2b313d.zip
llvm-9a5af541ee058b85a92113ecf9d38a06ef2b313d.tar.gz
llvm-9a5af541ee058b85a92113ecf9d38a06ef2b313d.tar.bz2
[clang-tidy] Remove readability-deleted-default
The deprecation notice was cherrypicked to the release branch in https://github.com/llvm/llvm-project/commit/f8b32989241cca87a8690c8cc404f06ce1f90e4c so its safe to remove this for the 13.X release cycle. Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D98612
Diffstat (limited to 'clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp
index bbd2e24..088b9f0 100644
--- a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp
+++ b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp
@@ -15,7 +15,6 @@
#include "ContainerSizeEmptyCheck.h"
#include "ConvertMemberFunctionsToStatic.h"
#include "DeleteNullPointerCheck.h"
-#include "DeletedDefaultCheck.h"
#include "ElseAfterReturnCheck.h"
#include "FunctionCognitiveComplexityCheck.h"
#include "FunctionSizeCheck.h"
@@ -67,8 +66,6 @@ public:
"readability-convert-member-functions-to-static");
CheckFactories.registerCheck<DeleteNullPointerCheck>(
"readability-delete-null-pointer");
- CheckFactories.registerCheck<DeletedDefaultCheck>(
- "readability-deleted-default");
CheckFactories.registerCheck<ElseAfterReturnCheck>(
"readability-else-after-return");
CheckFactories.registerCheck<FunctionCognitiveComplexityCheck>(