From: Wolfgang Bangerth Date: Thu, 17 May 2001 13:31:22 +0000 (+0000) Subject: Fix bugs with improperly specified explicit instantiations. X-Git-Tag: v8.0.0~19148 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdcd2bd11d9686bf6852556bc83f6981fcbb0486;p=dealii.git Fix bugs with improperly specified explicit instantiations. git-svn-id: https://svn.dealii.org/trunk@4646 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_tools.cc b/deal.II/deal.II/source/dofs/dof_tools.cc index f505f86190..f11ce7eedb 100644 --- a/deal.II/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/deal.II/source/dofs/dof_tools.cc @@ -2179,19 +2179,21 @@ template void DoFTools::distribute_cell_to_dof_vector (const DoFHandler &dof_handler, const Vector &cell_data, - Vector &dof_data); + Vector &dof_data, + const unsigned int component); template void DoFTools::distribute_cell_to_dof_vector (const DoFHandler &dof_handler, const Vector &cell_data, - Vector &dof_data); + Vector &dof_data, + const unsigned int component); template void DoFTools::extract_dofs(const DoFHandler& dof, const std::vector& component_select, std::vector& selected_dofs); -template void DoFTools::extract_level_dofs(unsigned int level, +template void DoFTools::extract_level_dofs(const unsigned int level, const MGDoFHandler& dof, const std::vector& component_select, std::vector& selected_dofs); @@ -2202,7 +2204,8 @@ template void DoFTools::extract_boundary_dofs (const DoFHandler &, const std::vector &, - std::vector &); + std::vector &, + const std::set &); #endif