From: peterrum Date: Sat, 20 Jul 2019 18:25:19 +0000 (+0200) Subject: Fix EnableIfScalar for VectorizedArray X-Git-Tag: v9.2.0-rc1~1367^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8399%2Fhead;p=dealii.git Fix EnableIfScalar for VectorizedArray --- diff --git a/include/deal.II/base/vectorization.h b/include/deal.II/base/vectorization.h index 1e994fbd4a..26c4fdd117 100644 --- a/include/deal.II/base/vectorization.h +++ b/include/deal.II/base/vectorization.h @@ -114,7 +114,7 @@ namespace internal template struct EnableIfScalar> { - using type = VectorizedArray::type>; + using type = VectorizedArray::type, width>; };