From: Timo Heister Date: Mon, 30 Nov 2015 18:06:11 +0000 (-0500) Subject: fix get_curl on clang broken in #1920 X-Git-Tag: v8.4.0-rc2~185^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1931%2Fhead;p=dealii.git fix get_curl on clang broken in #1920 --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 81649d1b72..1c94eb598f 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1132,7 +1132,7 @@ public: * Returns the curl of the vector field, $nabla \times v$ after a call to @p * evaluate(...,true,...). */ - Tensor<1,dim==2?1:dim,VectorizedArray > + Tensor<1,(dim==2?1:dim),VectorizedArray > get_curl (const unsigned int q_point) const; /**