Skip to content

Commit 934f828

Browse files
salva24vgvassilev
andauthored
Update src/cart_cell.cc
Co-authored-by: Vassil Vassilev <[email protected]>
1 parent 58a5a02 commit 934f828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cart_cell.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ CartCell::CartCell(const Real3& position) {
6464

6565
// Cart cells can move if they are alive and not attached to a tumor cell
6666
bool CartCell::DoesCellMove() {
67-
return (state_ == CartCellState::kAlive && !attached_to_tumor_cell_);
67+
return state_ == CartCellState::kAlive && !attached_to_tumor_cell_;
6868
}
6969

7070

0 commit comments

Comments
 (0)