From: Daniel Arndt Date: Thu, 11 Jun 2020 22:13:22 +0000 (-0400) Subject: Fix warning about an unused variable in dof_handler_policy.cc X-Git-Tag: v9.3.0-rc1~1443^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10517%2Fhead;p=dealii.git Fix warning about an unused variable in dof_handler_policy.cc --- 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(),