From e552a700d041c3591ee8dad21149e716e4151e10 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 25 Jun 2016 01:26:00 -0500 Subject: [PATCH] Instantiate class for other vector types. --- source/fe/mapping_fe_field.cc | 5 +++++ source/fe/mapping_fe_field.inst.in | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/source/fe/mapping_fe_field.cc b/source/fe/mapping_fe_field.cc index 39d5b65def..9f0c632616 100644 --- a/source/fe/mapping_fe_field.cc +++ b/source/fe/mapping_fe_field.cc @@ -22,7 +22,12 @@ #include #include #include +#include +#include +#include +#include #include +#include #include #include #include diff --git a/source/fe/mapping_fe_field.inst.in b/source/fe/mapping_fe_field.inst.in index ce653162ef..50ffbefef0 100644 --- a/source/fe/mapping_fe_field.inst.in +++ b/source/fe/mapping_fe_field.inst.in @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 1998 - 2015 by the deal.II authors +// Copyright (C) 2016 by the deal.II authors // // This file is part of the deal.II library. // @@ -16,10 +16,11 @@ -for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS) +for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS; VEC : REAL_SERIAL_VECTORS) { #if deal_II_dimension <= deal_II_space_dimension - template class MappingFEField, dealii::DoFHandler >; + template class MappingFEField >; #endif } -- 2.39.5