From: MichaƂ Wichrowski Date: Tue, 17 Oct 2017 10:41:03 +0000 (+0200) Subject: Fix number type in make_vectorized_array inside get_symmetric_gradient X-Git-Tag: v9.0.0-rc1~941^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5257%2Fhead;p=dealii.git Fix number type in make_vectorized_array inside get_symmetric_gradient --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 1170a3075d..51565668f8 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -4575,7 +4575,7 @@ FEEvaluationAccess // copy from generic function into dim-specialization function const Tensor<2,dim,VectorizedArray > grad = get_gradient(q_point); VectorizedArray symmetrized [(dim*dim+dim)/2]; - VectorizedArray half = make_vectorized_array (0.5); + VectorizedArray half = make_vectorized_array (0.5); for (unsigned int d=0; d