File tree Expand file tree Collapse file tree 9 files changed +0
-859
lines changed Expand file tree Collapse file tree 9 files changed +0
-859
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ set(LLVM_LINK_COMPONENTS support)
2
2
3
3
add_clang_library (clangTidyHICPPModule
4
4
ExceptionBaseclassCheck.cpp
5
- MultiwayPathsCoveredCheck.cpp
6
5
NoAssemblerCheck.cpp
7
6
HICPPTidyModule.cpp
8
7
SignedBitwiseCheck.cpp
Original file line number Diff line number Diff line change 35
35
#include " ../readability/FunctionSizeCheck.h"
36
36
#include " ../readability/IdentifierNamingCheck.h"
37
37
#include " ExceptionBaseclassCheck.h"
38
- #include " MultiwayPathsCoveredCheck.h"
39
38
#include " NoAssemblerCheck.h"
40
39
#include " SignedBitwiseCheck.h"
41
40
@@ -54,8 +53,6 @@ class HICPPModule : public ClangTidyModule {
54
53
" hicpp-exception-baseclass" );
55
54
CheckFactories.registerCheck <SignedBitwiseCheck>(
56
55
" hicpp-signed-bitwise" );
57
- CheckFactories.registerCheck <MultiwayPathsCoveredCheck>(
58
- " hicpp-multiway-paths-covered" );
59
56
CheckFactories.registerCheck <google::ExplicitConstructorCheck>(
60
57
" hicpp-explicit-conversions" );
61
58
CheckFactories.registerCheck <readability::FunctionSizeCheck>(
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -158,11 +158,6 @@ Improvements to clang-tidy
158
158
Ensures that all exception will be instances of ``std::exception `` and classes
159
159
that are derived from it.
160
160
161
- - New `hicpp-multiway-paths-covered
162
- <http://clang.llvm.org/extra/clang-tidy/checks/hicpp-multiway-paths-covered.html> `_ check
163
-
164
- Checks on ``switch `` and ``if `` - ``else if `` constructs that do not cover all possible code paths.
165
-
166
161
- New `hicpp-signed-bitwise
167
162
<http://clang.llvm.org/extra/clang-tidy/checks/hicpp-signed-bitwise.html> `_ check
168
163
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ Clang-Tidy Checks
81
81
hicpp-invalid-access-moved (redirects to misc-use-after-move) <hicpp-invalid-access-moved>
82
82
hicpp-member-init (redirects to cppcoreguidelines-pro-type-member-init) <hicpp-member-init>
83
83
hicpp-move-const-arg (redirects to misc-move-const-arg) <hicpp-move-const-arg>
84
- hicpp-multiway-paths-covered
85
84
hicpp-named-parameter (redirects to readability-named-parameter) <hicpp-named-parameter>
86
85
hicpp-new-delete-operators (redirects to misc-new-delete-overloads) <hicpp-new-delete-operators>
87
86
hicpp-no-array-decay (redirects to cppcoreguidelines-pro-bounds-array-to-pointer-decay) <hicpp-no-array-decay>
You can’t perform that action at this time.
0 commit comments