From: wolf Date: Wed, 11 Aug 1999 15:55:45 +0000 (+0000) Subject: Fix small problem with non-generated template functions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=226893ff2070634de09e97d711997f0d48cd5c4f;p=dealii-svn.git Fix small problem with non-generated template functions. git-svn-id: https://svn.dealii.org/trunk@1678 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_accessor.cc b/deal.II/deal.II/source/dofs/dof_accessor.cc index b39d07b7fb..3473bcf585 100644 --- a/deal.II/deal.II/source/dofs/dof_accessor.cc +++ b/deal.II/deal.II/source/dofs/dof_accessor.cc @@ -215,7 +215,7 @@ distribute_local_to_global (const FullMatrix &local_source, template void DoFObjectAccessor<3, dim>::set_dof_index (const unsigned int i, - const int index) const { + const int index) const { Assert (dof_handler != 0, ExcInvalidObject()); // make sure a FE has been selected // and enough room was reserved @@ -231,8 +231,8 @@ void DoFObjectAccessor<3, dim>::set_dof_index (const unsigned int i, template void DoFObjectAccessor<3, dim>::set_vertex_dof_index (const unsigned int vertex, - const unsigned int i, - const int index) const { + const unsigned int i, + const int index) const { Assert (dof_handler != 0, ExcInvalidObject()); Assert (dof_handler->selected_fe != 0, ExcInvalidObject()); Assert (vertex<8, ExcIndexRange (i,0,8)); @@ -823,6 +823,7 @@ template class TriaActiveIterator<2,DoFCellAccessor<2> >; #if deal_II_dimension == 3 template class DoFObjectAccessor<1, 3>; template class DoFObjectAccessor<2, 3>; +template class DoFObjectAccessor<3, 3>; template class DoFCellAccessor<3>; template class TriaRawIterator <3,DoFObjectAccessor<1, 3> >;