From 9f00bb2319af9b962bcdaabcd49e20627ed235b1 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 18 Jul 2021 20:08:25 +0200 Subject: [PATCH] DoFHandlerPolicy: Fix 64 bit code path --- source/dofs/dof_handler_policy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index 6c511e1f66..afd2b02e33 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -3686,7 +3686,7 @@ namespace internal DoFAccessorImplementation::Implementation:: DoFIndexProcessor(), [&complete](auto &stored_index, auto &received_index) { - if (received_index != numbers::invalid_unsigned_int) + if (received_index != numbers::invalid_dof_index) { Assert((stored_index == (numbers::invalid_dof_index)) || (stored_index == received_index), -- 2.39.5