From 380375c7ae216fdd637e97e5cebc9101e6c87b50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Wichrowski?= Date: Tue, 17 Oct 2017 12:41:03 +0200 Subject: [PATCH] Fix number type in make_vectorized_array inside get_symmetric_gradient --- include/deal.II/matrix_free/fe_evaluation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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