From: Wolfgang Bangerth Date: Tue, 21 May 2024 02:34:53 +0000 (-0600) Subject: Generalize the signature of MeshWorker::loop(). X-Git-Tag: v9.6.0-rc1~241^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee600fdb2423daf1023dbd129587998743ccfac5;p=dealii.git Generalize the signature of MeshWorker::loop(). --- 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,