From 66dd268590a3d7e9c65525a0ad3a3fa89a0457ff Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 24 Aug 2005 09:23:03 +0000 Subject: [PATCH] missing typename's added git-svn-id: https://svn.dealii.org/trunk@11316 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_tools.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/source/dofs/dof_tools.cc b/deal.II/deal.II/source/dofs/dof_tools.cc index 92fb934be2..56b511127c 100644 --- a/deal.II/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/deal.II/source/dofs/dof_tools.cc @@ -93,7 +93,7 @@ DoFTools::compute_row_length_vector( const Table<2,Coupling>& flux_couplings) { const FiniteElement& fe = dofs.get_fe(); - Assert (fe.is_primitive(), FiniteElementBase::ExcFENotPrimitive()); + Assert (fe.is_primitive(), typename FiniteElementBase::ExcFENotPrimitive()); Assert (row_lengths.size() == dofs.n_dofs(), ExcDimensionMismatch(row_lengths.size(), dofs.n_dofs())); Assert (couplings.n_rows()==fe.n_components(), @@ -330,7 +330,7 @@ DoFTools::compute_row_length_vector( const Table<2,Coupling>& flux_couplings) { const FiniteElement& fe = dofs.get_fe(); - Assert (fe.is_primitive(), FiniteElementBase::ExcFENotPrimitive()); + Assert (fe.is_primitive(), typename FiniteElementBase::ExcFENotPrimitive()); Assert (row_lengths.size() == dofs.n_dofs(), ExcDimensionMismatch(row_lengths.size(), dofs.n_dofs())); Assert (couplings.n_rows()==fe.n_components(), -- 2.39.5