Skip to content

Commit af43e1a

Browse files
committed
clang-tidy bdm
1 parent 174cd89 commit af43e1a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/cart_cell.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ enum class CartCellState : int {
5555
/// behaviors and properties related to CAR-T cell biology, including states,
5656
/// volume dynamics, and interactions with tumor cells.
5757
class CartCell : public Cell {
58+
// NOLINTNEXTLINE(modernize-type-traits)
5859
BDM_AGENT_HEADER(CartCell, Cell, 1);
5960

6061
public:

src/tumor_cell.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ enum class TumorCellType : int {
8282
/// - Interactions with CAR-T cells
8383

8484
class TumorCell : public Cell {
85+
// NOLINTNEXTLINE(modernize-type-traits)
8586
BDM_AGENT_HEADER(TumorCell, Cell, 1);
8687

8788
public:
@@ -365,4 +366,4 @@ struct StateControlGrowProliferate : public Behavior {
365366

366367
} // namespace bdm
367368

368-
#endif // TUMOR_CELL_H_
369+
#endif // TUMOR_CELL_H_

0 commit comments

Comments
 (0)