File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -185,16 +185,13 @@ class CartCell : public Cell {
185185
186186 private:
187187 // / Current state of the CAR-T cell
188- // NOLINTNEXTLINE(readability-identifier-naming)
189188 CartCellState state_ = CartCellState::kAlive ;
190189
191190 // / Timer to track time in the current state (in minutes)
192191 // / Used for apoptotic state timing
193- // NOLINTNEXTLINE(readability-identifier-naming)
194192 int timer_state_ = 0 ;
195193
196194 // / Pointer to the oxygen diffusion grid
197- // NOLINTNEXTLINE(readability-identifier-naming)
198195 DiffusionGrid* oxygen_dgrid_ = nullptr ;
199196
200197 // NOLINTNEXTLINE(readability-identifier-naming)
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ ComputeNumberTumorCellsAndRadius();
7979// / state to CSV files for post-processing and analysis. It includes information
8080// / about cell populations, tumor characteristics, and other relevant metrics.
8181struct OutputSummary : public StandaloneOperationImpl {
82+ // NOLINTNEXTLINE(cppcoreguidelines-owning-memory)
8283 BDM_OP_HEADER (OutputSummary);
8384
8485 public:
@@ -100,8 +101,9 @@ struct OutputSummary : public StandaloneOperationImpl {
100101};
101102
102103// / Register OutputSummary operation with CPU as compute target
104+ // NOLINTNEXTLINE(cppcoreguidelines-owning-memory)
103105inline BDM_REGISTER_OP (OutputSummary, " OutputSummary" , kCpu );
104106
105107} // namespace bdm
106108
107- #endif // CORE_UTIL_UTILS_AUX_H_
109+ #endif // CORE_UTIL_UTILS_AUX_H_
You can’t perform that action at this time.
0 commit comments