Skip to content

Commit 8ea435e

Browse files
committed
Try again
1 parent 1409ba0 commit 8ea435e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.clang-tidy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ CheckOptions:
4242
value: ''
4343
- key: readability-identifier-naming.ClassMemberSuffix
4444
value: '_'
45+
- key: readability-identifier-naming.PrivateClassMemberSuffix
46+
value: '_'
4547
- key: readability-identifier-naming.ConstantCase
4648
value: CamelCase
4749
- key: readability-identifier-naming.ConstantPrefix

src/cart_cell.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,7 @@ class CartCell : public Cell {
194194
/// Pointer to the oxygen diffusion grid
195195
DiffusionGrid* oxygen_dgrid_ = nullptr;
196196

197-
// NOLINTNEXTLINE(readability-identifier-naming)
198197
/// Pointer to the immunostimulatory factor diffusion grid
199-
// NOLINTNEXTLINE(readability-identifier-naming)
200198
DiffusionGrid* immunostimulatory_factor_dgrid_ = nullptr;
201199

202200
/// Flag indicating if the cell is attached to a tumor cell

src/tumor_cell.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ enum class TumorCellType : int {
8080
/// - Displacement computation applying pushing/adhesive forces between cells
8181
/// - Oncoprotein expression levels
8282
/// - Interactions with CAR-T cells
83-
8483
class TumorCell : public Cell {
8584
// NOLINTNEXTLINE(modernize-type-traits)
8685
BDM_AGENT_HEADER(TumorCell, Cell, 1);
@@ -94,8 +93,6 @@ class TumorCell : public Cell {
9493
TumorCell(const TumorCell&) = default;
9594
TumorCell(TumorCell&&) = default;
9695
~TumorCell() override = default;
97-
98-
// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
9996
// Assignment operators are implicitly deleted due to base class (Cell/Agent)
10097

10198
/// Called when a new agent is created (after cell division)

0 commit comments

Comments
 (0)