From: Wolfgang Bangerth Date: Sat, 25 Jun 2016 06:26:00 +0000 (-0500) Subject: Instantiate class for other vector types. X-Git-Tag: v8.5.0-rc1~946^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e552a700d041c3591ee8dad21149e716e4151e10;p=dealii.git Instantiate class for other vector types. --- 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 }