From 0358b73c9a910822ee87f522a1dce3abf9c3dac6 Mon Sep 17 00:00:00 2001 From: peterrum Date: Sat, 20 Jul 2019 20:25:19 +0200 Subject: [PATCH] Fix EnableIfScalar for VectorizedArray --- include/deal.II/base/vectorization.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>; }; -- 2.39.5