Skip to content

Commit

Permalink
Fix issue with uninitialized variables
Browse files Browse the repository at this point in the history
Was causing issues only on LLNL systems
  • Loading branch information
Jean-Luc Fattebert committed Mar 25, 2024
1 parent 6e71c70 commit fb6c3f5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions source/QuatModelParameters.cc
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,8 @@ void QuatModelParameters::readModelParameters(
d_moving_frame_upwind = db->getBoolWithDefault("upwind", false);
} else {
d_moving_frame_velocity = 0.;
d_moving_frame_adapt = false;
d_moving_frame_upwind = false;
}

if (with_third_phase()) initializeEta(model_db);
Expand Down

0 comments on commit fb6c3f5

Please sign in to comment.