From ee600fdb2423daf1023dbd129587998743ccfac5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 20 May 2024 20:34:53 -0600 Subject: [PATCH] Generalize the signature of MeshWorker::loop(). --- include/deal.II/meshworker/loop.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/meshworker/loop.h b/include/deal.II/meshworker/loop.h index 397e8327d6..3fcea362f2 100644 --- a/include/deal.II/meshworker/loop.h +++ b/include/deal.II/meshworker/loop.h @@ -439,16 +439,16 @@ namespace MeshWorker typename AssemblerType, typename IteratorType> void - loop(IteratorType begin, - std_cxx20::type_identity_t end, - DOFINFO &dinfo, - INFOBOX &info, - const std::function - &cell_worker, - const std::function - &boundary_worker, - const std::function end, + DOFINFO &dinfo, + INFOBOX &info, + const std::function &, + typename INFOBOX::CellInfo &)> &cell_worker, + const std::function &, + typename INFOBOX::CellInfo &)> &boundary_worker, + const std::function &, + std_cxx20::type_identity_t &, typename INFOBOX::CellInfo &, typename INFOBOX::CellInfo &)> &face_worker, AssemblerType &assembler, -- 2.39.5