From: Wolfgang Bangerth Date: Tue, 31 Oct 2023 21:17:32 +0000 (-0600) Subject: Replace ITERATOR -> IteratorType. X-Git-Tag: relicensing~335^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af02292dbec209c4813813ce725c92c79eb5bce8;p=dealii.git Replace ITERATOR -> IteratorType. --- 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) {