From: Wolfgang Bangerth Date: Thu, 23 Jan 2003 22:51:40 +0000 (+0000) Subject: On AIX, the linker is unhappy about some missing symbols. They should be there, but... X-Git-Tag: v8.0.0~17039 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9edbe6de64dcbd57fb038085051818377dadf220;p=dealii.git On AIX, the linker is unhappy about some missing symbols. They should be there, but some explicit instantiations don't harm either. git-svn-id: https://svn.dealii.org/trunk@6949 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/derivative_approximation.cc b/deal.II/deal.II/source/numerics/derivative_approximation.cc index 889aa73478..34ad0e83bb 100644 --- a/deal.II/deal.II/source/numerics/derivative_approximation.cc +++ b/deal.II/deal.II/source/numerics/derivative_approximation.cc @@ -743,3 +743,16 @@ approximate_second_derivative const Vector &solution, Vector &derivative_norm, const unsigned int component); + +// static variables +// +// on AIX, the linker is unhappy about some missing symbols. they +// should really be there, but explicitly instantiation them will also +// not hurt +template +const UpdateFlags +DerivativeApproximation::Gradient::update_flags; + +template +const UpdateFlags +DerivativeApproximation::SecondDerivative::update_flags;