From 03fd83559f8bad207b79dee0687b45c18cf71eed Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 10 Jan 2023 10:01:50 -0700 Subject: [PATCH] Use std::array instead of a C-style array. --- include/deal.II/base/data_out_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index 64ee5c70c3..cbd8f40841 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -282,7 +282,7 @@ namespace DataOutBase * The order of points is the same as for cells in the * triangulation. */ - Point vertices[GeometryInfo::vertices_per_cell]; + std::array, GeometryInfo::vertices_per_cell> vertices; /** * Patch indices of neighbors of the current patch. This is made available -- 2.39.5