From 71b638c0b8363e0a8c724b46233ae326d622425b Mon Sep 17 00:00:00 2001 From: rjrios915 Date: Thu, 26 Sep 2024 10:05:01 -0700 Subject: [PATCH] Fixes second clang error #126 --- src/solve/SimulationParameters.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/solve/SimulationParameters.h b/src/solve/SimulationParameters.h index a313df09..01422e4e 100644 --- a/src/solve/SimulationParameters.h +++ b/src/solve/SimulationParameters.h @@ -50,9 +50,9 @@ struct SimulationParameters { // Negative value indicates this has not // been read from config file yet. - double sim_time_step_size{0.0}; ///< Simulation time step size + double sim_time_step_size{0.0}: ///< Simulation time step size double sim_abs_tol{0.0}; ///< Absolute tolerance for simulation - double sim_cardiac_period{0.0}; ///< Cardiac period + double sim_cardiac_period{0.0}; ///< Cardiac period int sim_num_cycles{0}; ///< Number of cardiac cycles to simulate int sim_pts_per_cycle{0}; ///< Number of time steps per cardiac cycle