From: Wolfgang Bangerth Date: Thu, 10 Nov 2022 18:56:16 +0000 (-0700) Subject: Rename a variable. Unname another. X-Git-Tag: v9.5.0-rc1~843^2~8 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0b3f507cbaf15fdb4ad11b4f41702c0afbd044d;p=dealii.git Rename a variable. Unname another. --- 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;