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 authored and jeanlucf22 committed Mar 25, 2024
1 parent 27ae778 commit cda3137
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 @@ -976,6 +976,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 cda3137

Please sign in to comment.