File tree Expand file tree Collapse file tree 11 files changed +3
-285
lines changed Expand file tree Collapse file tree 11 files changed +3
-285
lines changed Original file line number Diff line number Diff line change 33
33
#include " LimitedRandomnessCheck.h"
34
34
#include " MutatingCopyCheck.h"
35
35
#include " NonTrivialTypesLibcMemoryCallsCheck.h"
36
- #include " PostfixOperatorCheck.h"
37
36
#include " ProperlySeededRandomGeneratorCheck.h"
38
37
#include " SetLongJmpCheck.h"
39
38
#include " StaticObjectExceptionCheck.h"
@@ -239,8 +238,6 @@ class CERTModule : public ClangTidyModule {
239
238
CheckFactories.registerCheck <bugprone::SpuriouslyWakeUpFunctionsCheck>(
240
239
" cert-con54-cpp" );
241
240
// DCL
242
- CheckFactories.registerCheck <PostfixOperatorCheck>(
243
- " cert-dcl21-cpp" );
244
241
CheckFactories.registerCheck <VariadicFunctionDefCheck>(" cert-dcl50-cpp" );
245
242
CheckFactories.registerCheck <bugprone::ReservedIdentifierCheck>(
246
243
" cert-dcl51-cpp" );
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ add_clang_library(clangTidyCERTModule
12
12
LimitedRandomnessCheck.cpp
13
13
MutatingCopyCheck.cpp
14
14
NonTrivialTypesLibcMemoryCallsCheck.cpp
15
- PostfixOperatorCheck.cpp
16
15
ProperlySeededRandomGeneratorCheck.cpp
17
16
SetLongJmpCheck.cpp
18
17
StaticObjectExceptionCheck.cpp
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ FAST(cert-con36-c, 2.0)
116
116
FAST(cert-con54-cpp, 3.0 )
117
117
FAST(cert-dcl03-c, 2.0 )
118
118
FAST(cert-dcl16-c, -1.0 )
119
- FAST(cert-dcl21-cpp, 0.0 )
120
119
FAST(cert-dcl37-c, 3.0 )
121
120
FAST(cert-dcl50-cpp, -1.0 )
122
121
FAST(cert-dcl51-cpp, 1.0 )
Original file line number Diff line number Diff line change @@ -109,6 +109,9 @@ Changes in existing checks
109
109
Removed checks
110
110
^^^^^^^^^^^^^^
111
111
112
+ - Removed `cert-dcl21-cpp `, which was deprecated since :program: `clang-tidy ` 17,
113
+ since the rule DCL21-CPP has been removed from the CERT guidelines.
114
+
112
115
Improvements to include-fixer
113
116
-----------------------------
114
117
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -155,7 +155,6 @@ Clang-Tidy Checks
155
155
:doc: `bugprone-unused-return-value <bugprone/unused-return-value >`,
156
156
:doc: `bugprone-use-after-move <bugprone/use-after-move >`,
157
157
:doc: `bugprone-virtual-near-miss <bugprone/virtual-near-miss >`, "Yes"
158
- :doc: `cert-dcl21-cpp <cert/dcl21-cpp >`, "Yes"
159
158
:doc: `cert-dcl50-cpp <cert/dcl50-cpp >`,
160
159
:doc: `cert-dcl58-cpp <cert/dcl58-cpp >`,
161
160
:doc: `cert-env33-c <cert/env33-c >`,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -985,8 +985,6 @@ clang-tools-extra/clang-tidy/cert/MutatingCopyCheck.cpp
985
985
clang-tools-extra/clang-tidy/cert/MutatingCopyCheck.h
986
986
clang-tools-extra/clang-tidy/cert/NonTrivialTypesLibcMemoryCallsCheck.cpp
987
987
clang-tools-extra/clang-tidy/cert/NonTrivialTypesLibcMemoryCallsCheck.h
988
- clang-tools-extra/clang-tidy/cert/PostfixOperatorCheck.cpp
989
- clang-tools-extra/clang-tidy/cert/PostfixOperatorCheck.h
990
988
clang-tools-extra/clang-tidy/cert/ProperlySeededRandomGeneratorCheck.cpp
991
989
clang-tools-extra/clang-tidy/cert/ProperlySeededRandomGeneratorCheck.h
992
990
clang-tools-extra/clang-tidy/cert/SetLongJmpCheck.cpp
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ static_library("cert") {
23
23
" LimitedRandomnessCheck.cpp" ,
24
24
" MutatingCopyCheck.cpp" ,
25
25
" NonTrivialTypesLibcMemoryCallsCheck.cpp" ,
26
- " PostfixOperatorCheck.cpp" ,
27
26
" ProperlySeededRandomGeneratorCheck.cpp" ,
28
27
" SetLongJmpCheck.cpp" ,
29
28
" StaticObjectExceptionCheck.cpp" ,
You can’t perform that action at this time.
0 commit comments