From f0b3f507cbaf15fdb4ad11b4f41702c0afbd044d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 10 Nov 2022 11:56:16 -0700 Subject: [PATCH] Rename a variable. Unname another. --- source/base/data_out_base.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index fad78acad2..81a24ea264 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -8803,9 +8803,11 @@ DataOutBase::write_filtered_data( return; #endif - std::tie(n_node, n_cell) = count_nodes_and_cells(patches); + unsigned int n_nodes; + std::tie(n_nodes, std::ignore) = + count_nodes_and_cells(patches); - data_vectors = Table<2, double>(n_data_sets, n_node); + data_vectors = Table<2, double>(n_data_sets, n_nodes); void (*fun_ptr)(const std::vector> &, Table<2, double> &) = &DataOutBase::template write_gmv_reorder_data_vectors; -- 2.39.5