File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ CheckOptions:
42
42
value : ' '
43
43
- key : readability-identifier-naming.ClassMemberSuffix
44
44
value : ' _'
45
- - key : readability-identifier-naming.PrivateClassMemberSuffix
46
- value : ' _'
47
45
- key : readability-identifier-naming.ConstantCase
48
46
value : CamelCase
49
47
- key : readability-identifier-naming.ConstantPrefix
@@ -98,8 +96,12 @@ CheckOptions:
98
96
value : ' k'
99
97
- key : readability-identifier-naming.PrivateMemberPrefix
100
98
value : ' '
99
+ - key : readability-identifier-naming.PrivateMemberSuffix
100
+ value : ' _'
101
101
- key : readability-identifier-naming.ProtectedMemberPrefix
102
102
value : ' '
103
+ - key : readability-identifier-naming.ProtectedMemberSuffix
104
+ value : ' _'
103
105
- key : readability-identifier-naming.PublicMemberCase
104
106
value : lower_case
105
107
- key : readability-identifier-naming.MethodCase
Original file line number Diff line number Diff line change @@ -198,7 +198,6 @@ class CartCell : public Cell {
198
198
DiffusionGrid* immunostimulatory_factor_dgrid_ = nullptr ;
199
199
200
200
// / Flag indicating if the cell is attached to a tumor cell
201
- // NOLINTNEXTLINE(readability-identifier-naming)
202
201
bool attached_to_tumor_cell_ = false ;
203
202
204
203
// / Current time until apoptosis
You can’t perform that action at this time.
0 commit comments