From cd171cc123284fd792b852c9d8699c9114204a34 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sat, 27 Jun 2020 08:42:31 +0200 Subject: [PATCH] Remove unused internal class --- .../numerics/matrix_creator.templates.h | 61 ------------------- 1 file changed, 61 deletions(-) diff --git a/include/deal.II/numerics/matrix_creator.templates.h b/include/deal.II/numerics/matrix_creator.templates.h index 76e08845e7..d26b823b33 100644 --- a/include/deal.II/numerics/matrix_creator.templates.h +++ b/include/deal.II/numerics/matrix_creator.templates.h @@ -68,67 +68,6 @@ namespace MatrixCreator { namespace internal { - /** - * Convenience abbreviation for - * pairs of DoF handler cell - * iterators. This type works - * just like a - * std::pair - * but is templatized on the - * dof handler that should be used. - */ - template - struct IteratorRange - { - /** - * Typedef for the iterator type. - */ - using active_cell_iterator = - typename DoFHandlerType::active_cell_iterator; - - /** - * Abbreviation for a pair of iterators. - */ - using iterator_pair = - std::pair; - - /** - * Constructor. Initialize the two values by the given values. - */ - IteratorRange(const active_cell_iterator &first, - const active_cell_iterator &second); - - /** - * Constructor taking a pair of values for initialization. - */ - IteratorRange(const iterator_pair &ip); - - /** - * Pair of iterators denoting a half-open range. - */ - active_cell_iterator first, second; - }; - - - - template - inline IteratorRange::IteratorRange( - const active_cell_iterator &first, - const active_cell_iterator &second) - : first(first) - , second(second) - {} - - - - template - inline IteratorRange::IteratorRange(const iterator_pair &ip) - : first(ip.first) - , second(ip.second) - {} - - - namespace AssemblerData { template -- 2.39.5