From 3df62e75f098251013eae277b44d3e818aea054a Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 11 Jun 2020 18:13:22 -0400 Subject: [PATCH] Fix warning about an unused variable in dof_handler_policy.cc --- source/dofs/dof_handler_policy.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index bfe0acc7ee..fb7fb4ff66 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -3577,6 +3577,7 @@ namespace internal DistributedTriangulationBase &tria, DoFHandlerType & dof_handler) { + (void)tria; const auto pack = [&](const auto &cell) { // why would somebody request a cell that is not ours? Assert(cell->level_subdomain_id() == tria.locally_owned_subdomain(), -- 2.39.5