From f396f58430e0516e30a8f3b1d3cf4e1ba89680ef Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 7 Mar 2016 07:32:22 -0600 Subject: [PATCH] Provide necessary #include file and properly qualify name. --- include/deal.II/meshworker/loop.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/meshworker/loop.h b/include/deal.II/meshworker/loop.h index f05cc9fec6..8afdd4e50e 100644 --- a/include/deal.II/meshworker/loop.h +++ b/include/deal.II/meshworker/loop.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2006 - 2015 by the deal.II authors +// Copyright (C) 2006 - 2016 by the deal.II authors // // This file is part of the deal.II library. // @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -32,7 +33,6 @@ DEAL_II_NAMESPACE_OPEN template class TriaActiveIterator; -template class FilteredIterator; namespace internal { @@ -52,7 +52,7 @@ namespace internal } template - inline bool is_active_iterator(const FilteredIterator > &) + inline bool is_active_iterator(const dealii::FilteredIterator > &) { return true; } -- 2.39.5