From 39676513c27cc9691296b77e34d949374027c0e1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 26 Sep 2007 19:46:49 +0000 Subject: [PATCH] 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 --- deal.II/deal.II/include/dofs/dof_accessor.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5