From 27b8e7f88ee0d86b93e17e75f540138a96938514 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 18 Aug 2017 18:34:06 +0200 Subject: [PATCH] Fix Assert with the correct number type --- include/deal.II/dofs/dof_accessor.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/dofs/dof_accessor.templates.h b/include/deal.II/dofs/dof_accessor.templates.h index 3563e3b464..5091855096 100644 --- a/include/deal.II/dofs/dof_accessor.templates.h +++ b/include/deal.II/dofs/dof_accessor.templates.h @@ -1264,7 +1264,7 @@ namespace internal ExcIndexRange (vertex_index, 0, dof_handler.vertex_dof_offsets.size())); Assert (dof_handler.vertex_dof_offsets[vertex_index] != - numbers::invalid_dof_index, + numbers::invalid_unsigned_int, ExcMessage ("This vertex is unused and has no DoFs associated with it")); // hop along the list of index -- 2.39.5