From b1bbf7f8b56f9de357726cc93871ef6a04241fbb Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 29 Jul 2006 20:17:31 +0000 Subject: [PATCH] Fix one template argument that also happens to avoid an internal compiler error... git-svn-id: https://svn.dealii.org/trunk@13501 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/hp_dof_objects.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/include/dofs/hp_dof_objects.h b/deal.II/deal.II/include/dofs/hp_dof_objects.h index 216a9e1426..62ac5fec42 100644 --- a/deal.II/deal.II/include/dofs/hp_dof_objects.h +++ b/deal.II/deal.II/include/dofs/hp_dof_objects.h @@ -578,7 +578,7 @@ namespace internal "this DoFHandler")); Assert (obj_index < dof_offsets.size(), ExcIndexRange (obj_index, 0, dof_offsets.size())); - Assert (fe_index != ::hp::DoFHandler<1>::default_fe_index, + Assert (fe_index != ::hp::DoFHandler::default_fe_index, ExcMessage ("You need to specify a FE index when working " "with hp DoFHandlers")); Assert (fe_index < dof_handler.get_fe().size(), -- 2.39.5