File tree Expand file tree Collapse file tree 9 files changed +0
-951
lines changed Expand file tree Collapse file tree 9 files changed +0
-951
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ add_clang_library(clangTidyCppCoreGuidelinesModule
13
13
NarrowingConversionsCheck.cpp
14
14
NoMallocCheck.cpp
15
15
OwningMemoryCheck.cpp
16
- PreferMemberInitializerCheck.cpp
17
16
ProBoundsArrayToPointerDecayCheck.cpp
18
17
ProBoundsConstantArrayIndexCheck.cpp
19
18
ProBoundsPointerArithmeticCheck.cpp
Original file line number Diff line number Diff line change 22
22
#include " NarrowingConversionsCheck.h"
23
23
#include " NoMallocCheck.h"
24
24
#include " OwningMemoryCheck.h"
25
- #include " PreferMemberInitializerCheck.h"
26
25
#include " ProBoundsArrayToPointerDecayCheck.h"
27
26
#include " ProBoundsConstantArrayIndexCheck.h"
28
27
#include " ProBoundsPointerArithmeticCheck.h"
@@ -67,8 +66,6 @@ class CppCoreGuidelinesModule : public ClangTidyModule {
67
66
" cppcoreguidelines-non-private-member-variables-in-classes" );
68
67
CheckFactories.registerCheck <OwningMemoryCheck>(
69
68
" cppcoreguidelines-owning-memory" );
70
- CheckFactories.registerCheck <PreferMemberInitializerCheck>(
71
- " cppcoreguidelines-prefer-member-initializer" );
72
69
CheckFactories.registerCheck <ProBoundsArrayToPointerDecayCheck>(
73
70
" cppcoreguidelines-pro-bounds-array-to-pointer-decay" );
74
71
CheckFactories.registerCheck <ProBoundsConstantArrayIndexCheck>(
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -290,12 +290,6 @@ New checks
290
290
Finds structs that are inefficiently packed or aligned, and recommends
291
291
packing and/or aligning of said structs as needed.
292
292
293
- - New :doc: `cppcoreguidelines-prefer-member-initializer
294
- <clang-tidy/checks/cppcoreguidelines-prefer-member-initializer>` check.
295
-
296
- Finds member initializations in the constructor body which can be placed into
297
- the initialization list instead.
298
-
299
293
- New :doc: `bugprone-misplaced-pointer-arithmetic-in-alloc
300
294
<clang-tidy/checks/bugprone-misplaced-pointer-arithmetic-in-alloc>` check.
301
295
You can’t perform that action at this time.
0 commit comments