From: Martin Kronbichler Date: Tue, 23 Dec 2014 10:33:08 +0000 (+0100) Subject: Fix undefined symbols on Mac. X-Git-Tag: v8.3.0-rc1~592^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b287868dd1726f5e3c7cfd12019e54fd95cfabe4;p=dealii.git Fix undefined symbols on Mac. Deactivate ShapeInfo::reinit on MSVC target as proposed in c2021e2. --- diff --git a/source/matrix_free/matrix_free.inst.in b/source/matrix_free/matrix_free.inst.in index dfd4ce05ad..0b7522c3f1 100644 --- a/source/matrix_free/matrix_free.inst.in +++ b/source/matrix_free/matrix_free.inst.in @@ -31,5 +31,14 @@ for (deal_II_dimension : DIMENSIONS) template struct internal::MatrixFreeFunctions::MappingInfo; template struct internal::MatrixFreeFunctions::MappingInfo; + +#ifndef DEAL_II_MSVC + template void internal::MatrixFreeFunctions::ShapeInfo::reinit + (const Quadrature<1> &, const FiniteElement + &, const unsigned int); + template void internal::MatrixFreeFunctions::ShapeInfo::reinit + (const Quadrature<1> &, const FiniteElement + &, const unsigned int); +#endif }