File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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-
8483class 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)
You can’t perform that action at this time.
0 commit comments