File tree Expand file tree Collapse file tree 9 files changed +0
-904
lines changed Expand file tree Collapse file tree 9 files changed +0
-904
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ add_clang_library(clangTidyCppCoreGuidelinesModule
4
4
CppCoreGuidelinesTidyModule.cpp
5
5
InterfacesGlobalInitCheck.cpp
6
6
NoMallocCheck.cpp
7
- OwningMemoryCheck.cpp
8
7
ProBoundsArrayToPointerDecayCheck.cpp
9
8
ProBoundsConstantArrayIndexCheck.cpp
10
9
ProBoundsPointerArithmeticCheck.cpp
Original file line number Diff line number Diff line change 13
13
#include " ../misc/UnconventionalAssignOperatorCheck.h"
14
14
#include " InterfacesGlobalInitCheck.h"
15
15
#include " NoMallocCheck.h"
16
- #include " OwningMemoryCheck.h"
17
16
#include " ProBoundsArrayToPointerDecayCheck.h"
18
17
#include " ProBoundsConstantArrayIndexCheck.h"
19
18
#include " ProBoundsPointerArithmeticCheck.h"
@@ -38,8 +37,6 @@ class CppCoreGuidelinesModule : public ClangTidyModule {
38
37
CheckFactories.registerCheck <InterfacesGlobalInitCheck>(
39
38
" cppcoreguidelines-interfaces-global-init" );
40
39
CheckFactories.registerCheck <NoMallocCheck>(" cppcoreguidelines-no-malloc" );
41
- CheckFactories.registerCheck <OwningMemoryCheck>(
42
- " cppcoreguidelines-owning-memory" );
43
40
CheckFactories.registerCheck <ProBoundsArrayToPointerDecayCheck>(
44
41
" cppcoreguidelines-pro-bounds-array-to-pointer-decay" );
45
42
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 @@ -17,10 +17,6 @@ namespace clang {
17
17
namespace tidy {
18
18
namespace matchers {
19
19
20
- AST_MATCHER (BinaryOperator, isAssignmentOperator) {
21
- return Node.isAssignmentOp ();
22
- }
23
-
24
20
AST_MATCHER (BinaryOperator, isRelationalOperator) {
25
21
return Node.isRelationalOp ();
26
22
}
You can’t perform that action at this time.
0 commit comments