From 53d89a5875c560a5e33f5158f246390f1d3e6d6d Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 11 Apr 2002 15:46:12 +0000 Subject: [PATCH] ISO C++ requires that we explicitly state which template to instantiate in case there are ambiguities. git-svn-id: https://svn.dealii.org/trunk@5649 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_constraints.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/source/dofs/dof_constraints.cc b/deal.II/deal.II/source/dofs/dof_constraints.cc index e713eee747..de38abb825 100644 --- a/deal.II/deal.II/source/dofs/dof_constraints.cc +++ b/deal.II/deal.II/source/dofs/dof_constraints.cc @@ -1202,9 +1202,9 @@ ConstraintMatrix::memory_consumption () const // syntax... #define vector_functions \ - template void ConstraintMatrix::condense<>(const VectorType &uncondensed,\ + template void ConstraintMatrix::condense(const VectorType &uncondensed,\ VectorType &condensed) const;\ - template void ConstraintMatrix::condense<>(VectorType &vec) const;\ + template void ConstraintMatrix::condense(VectorType &vec) const;\ template void ConstraintMatrix::set_zero<>(VectorType &vec) const;\ template void ConstraintMatrix::distribute<>(const VectorType &condensed,\ VectorType &uncondensed) const;\ -- 2.39.5