diff --git a/Exec/science/massive_star/problem_initialize_state_data.H b/Exec/science/massive_star/problem_initialize_state_data.H index c34101fd76..0333d7da82 100644 --- a/Exec/science/massive_star/problem_initialize_state_data.H +++ b/Exec/science/massive_star/problem_initialize_state_data.H @@ -154,17 +154,17 @@ void problem_initialize_state_data (int i, int j, int k, if (problem::perturb_model) { // random numbers between -1 and 1 - GpuArray alpha; - GpuArray beta; - GpuArray gamma; + GpuArray alpha{}; + GpuArray beta{}; + GpuArray gamma{}; // random numbers between 0 and 2*pi - GpuArray phix; - GpuArray phiy; - GpuArray phiz; + GpuArray phix{}; + GpuArray phiy{}; + GpuArray phiz{}; // compute the norm of k - GpuArray normk; + GpuArray normk{}; for (int kk = 1; kk <= 3; ++kk) { for (int jj = 1; jj <= 3; ++jj) {