From: Denis Davydov Date: Sun, 24 Sep 2017 06:42:46 +0000 (+0200) Subject: add missing instantiation for ConstraintMatrix::distribute_local_to_global() X-Git-Tag: v9.0.0-rc1~1046^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5136%2Fhead;p=dealii.git add missing instantiation for ConstraintMatrix::distribute_local_to_global() --- diff --git a/source/lac/constraint_matrix.cc b/source/lac/constraint_matrix.cc index 036d3f6946..6b159a292f 100644 --- a/source/lac/constraint_matrix.cc +++ b/source/lac/constraint_matrix.cc @@ -1427,11 +1427,17 @@ BLOCK_SPARSITY_FUNCTIONS(TrilinosWrappers::BlockSparsityPattern); #endif -#define ONLY_MATRIX_FUNCTIONS(MatrixType) \ - template void ConstraintMatrix::distribute_local_to_global (\ - const FullMatrix &, \ - const std::vector &, \ - const std::vector &, \ +#define ONLY_MATRIX_FUNCTIONS(MatrixType) \ + template void ConstraintMatrix::distribute_local_to_global ( \ + const FullMatrix &, \ + const std::vector &, \ + const std::vector &, \ + MatrixType &) const; \ + template void ConstraintMatrix::distribute_local_to_global ( \ + const FullMatrix &, \ + const std::vector &, \ + const ConstraintMatrix &, \ + const std::vector &, \ MatrixType &) const ONLY_MATRIX_FUNCTIONS(FullMatrix);