Skip to content

Commit 65ef141

Browse files
committed
Try
1 parent 8ea435e commit 65ef141

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.clang-tidy

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ CheckOptions:
4242
value: ''
4343
- key: readability-identifier-naming.ClassMemberSuffix
4444
value: '_'
45-
- key: readability-identifier-naming.PrivateClassMemberSuffix
46-
value: '_'
4745
- key: readability-identifier-naming.ConstantCase
4846
value: CamelCase
4947
- key: readability-identifier-naming.ConstantPrefix
@@ -98,8 +96,12 @@ CheckOptions:
9896
value: 'k'
9997
- key: readability-identifier-naming.PrivateMemberPrefix
10098
value: ''
99+
- key: readability-identifier-naming.PrivateMemberSuffix
100+
value: '_'
101101
- key: readability-identifier-naming.ProtectedMemberPrefix
102102
value: ''
103+
- key: readability-identifier-naming.ProtectedMemberSuffix
104+
value: '_'
103105
- key: readability-identifier-naming.PublicMemberCase
104106
value: lower_case
105107
- key: readability-identifier-naming.MethodCase

src/cart_cell.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ class CartCell : public Cell {
198198
DiffusionGrid* immunostimulatory_factor_dgrid_ = nullptr;
199199

200200
/// Flag indicating if the cell is attached to a tumor cell
201-
// NOLINTNEXTLINE(readability-identifier-naming)
202201
bool attached_to_tumor_cell_ = false;
203202

204203
/// Current time until apoptosis

0 commit comments

Comments
 (0)