From: Daniel Arndt Date: Tue, 22 Sep 2020 13:00:56 +0000 (-0400) Subject: Replace __restrict by DEAL_II_RESTRICT X-Git-Tag: v9.3.0-rc1~1088^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eaa77f1446eac2b897b7db76d5570bfa5dbd6a18;p=dealii.git Replace __restrict by DEAL_II_RESTRICT --- diff --git a/include/deal.II/matrix_free/evaluation_kernels.h b/include/deal.II/matrix_free/evaluation_kernels.h index 8f40cb85d3..2314c590ee 100644 --- a/include/deal.II/matrix_free/evaluation_kernels.h +++ b/include/deal.II/matrix_free/evaluation_kernels.h @@ -2614,11 +2614,11 @@ namespace internal // `scratch_data` variable to not risk a stack overflow. constexpr unsigned int stack_array_size_threshold = 100; + VectorizedArrayType *DEAL_II_RESTRICT temp1; VectorizedArrayType temp_data[static_dofs_per_face < stack_array_size_threshold ? 2 * dofs_per_face : 1]; - VectorizedArrayType *__restrict temp1; if (static_dofs_per_face < stack_array_size_threshold) temp1 = &temp_data[0]; else