From 72f06f9bd45f4863633f89335da62549f818d5be Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Thu, 4 Jul 2019 15:17:51 +0200 Subject: [PATCH] Fix compilation of loop.h with some versions of clang. --- include/deal.II/meshworker/loop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/meshworker/loop.h b/include/deal.II/meshworker/loop.h index fcd67320ef..b26fd27fd9 100644 --- a/include/deal.II/meshworker/loop.h +++ b/include/deal.II/meshworker/loop.h @@ -341,7 +341,7 @@ namespace MeshWorker { // If iterator is active and neighbor is refined, skip // internal face. - if (internal::is_active_iterator(cell) && + if (dealii::internal::is_active_iterator(cell) && neighbor->has_children()) { Assert( @@ -476,7 +476,7 @@ namespace MeshWorker boundary_worker, face_worker, lctrl), - std::bind(&internal::assemble, + std::bind(&dealii::internal::assemble, std::placeholders::_1, &assembler), info, -- 2.39.5