Skip to content

Commit 1409ba0

Browse files
committed
More 2
1 parent 085f4c3 commit 1409ba0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/cart_cell.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

src/utils_aux.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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.
8181
struct 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)
103105
inline 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_

0 commit comments

Comments
 (0)