From af02292dbec209c4813813ce725c92c79eb5bce8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 31 Oct 2023 15:17:32 -0600 Subject: [PATCH] Replace ITERATOR -> IteratorType. --- include/deal.II/dofs/dof_renumbering.h | 8 ++++---- source/dofs/dof_renumbering.cc | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/dofs/dof_renumbering.h b/include/deal.II/dofs/dof_renumbering.h index 6a88a13875..60e36e0494 100644 --- a/include/deal.II/dofs/dof_renumbering.h +++ b/include/deal.II/dofs/dof_renumbering.h @@ -749,12 +749,12 @@ namespace DoFRenumbering * Does not perform the renumbering on the DoFHandler dofs but returns the * renumbering vector. */ - template + template types::global_dof_index compute_block_wise(std::vector &new_dof_indices, - const ITERATOR &start, - const ENDITERATOR &end, - bool is_level_operation); + const IteratorType &start, + const EndIteratorType &end, + const bool is_level_operation); /** * @} diff --git a/source/dofs/dof_renumbering.cc b/source/dofs/dof_renumbering.cc index dd7cd9e809..e1ecc4f570 100644 --- a/source/dofs/dof_renumbering.cc +++ b/source/dofs/dof_renumbering.cc @@ -1048,11 +1048,11 @@ namespace DoFRenumbering - template + template types::global_dof_index compute_block_wise(std::vector &new_indices, - const ITERATOR &start, - const ENDITERATOR &end, + const IteratorType &start, + const EndIteratorType &end, const bool is_level_operation) { const hp::FECollection &fe_collection = @@ -1104,7 +1104,7 @@ namespace DoFRenumbering // take care of that std::vector> block_to_dof_map( fe_collection.n_blocks()); - for (ITERATOR cell = start; cell != end; ++cell) + for (IteratorType cell = start; cell != end; ++cell) { if (is_level_operation) { -- 2.39.5