From: Wolfgang Bangerth Date: Wed, 26 Sep 2007 19:46:49 +0000 (+0000) Subject: Qualify a few accesses to an exception in the base class. This shouldn't be strictly... X-Git-Tag: v8.0.0~9808 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39676513c27cc9691296b77e34d949374027c0e1;p=dealii.git Qualify a few accesses to an exception in the base class. This shouldn't be strictly necessary in these functions (because they are explicit specializations not dependent on a template parameter any more) but xlC wants that anyway and so why not do it as there is no harm. git-svn-id: https://svn.dealii.org/trunk@15256 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/dof_accessor.templates.h b/deal.II/deal.II/include/dofs/dof_accessor.templates.h index 65e23ccecb..393ba04d52 100644 --- a/deal.II/deal.II/include/dofs/dof_accessor.templates.h +++ b/deal.II/deal.II/include/dofs/dof_accessor.templates.h @@ -731,7 +731,7 @@ DoFCellAccessor >:: get_dof_indices (std::vector &dof_indices) const { Assert (dof_indices.size() == this->get_fe().dofs_per_cell, - ExcVectorDoesNotMatch()); + BaseClass::ExcVectorDoesNotMatch()); // check as in documentation that // cell is either active, or dofs @@ -769,7 +769,7 @@ DoFCellAccessor >:: get_dof_indices (std::vector &dof_indices) const { Assert (dof_indices.size() == this->get_fe().dofs_per_cell, - ExcVectorDoesNotMatch()); + BaseClass::ExcVectorDoesNotMatch()); // check as in documentation that // cell is either active, or dofs @@ -808,7 +808,7 @@ DoFCellAccessor >:: get_dof_indices (std::vector &dof_indices) const { Assert (dof_indices.size() == this->get_fe().dofs_per_cell, - ExcVectorDoesNotMatch()); + BaseClass::ExcVectorDoesNotMatch()); // check as in documentation that // cell is either active, or dofs