From 9b320cef11632c97a1181561d1e601ccd154191b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 15 May 2025 21:40:46 -0600 Subject: [PATCH] Handle template arguments better in grid_out.cc. --- source/grid/grid_out.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/grid/grid_out.cc b/source/grid/grid_out.cc index bfee457ec2..dea3335fae 100644 --- a/source/grid/grid_out.cc +++ b/source/grid/grid_out.cc @@ -3123,15 +3123,15 @@ namespace * This is made particularly simple because the patch only needs to * contain geometry info and additional properties of cells */ - template + template void generate_triangulation_patches( std::vector> &patches, - ITERATOR cell, - const END &end) + const IteratorType &begin, + const std_cxx20::type_identity_t &end) { // convert each of the active cells into a patch - for (; cell != end; ++cell) + for (auto cell = begin; cell != end; ++cell) { DataOutBase::Patch patch; patch.reference_cell = cell->reference_cell(); -- 2.39.5