From: Wolfgang Bangerth Date: Tue, 10 Jan 2023 17:01:50 +0000 (-0700) Subject: Use std::array instead of a C-style array. X-Git-Tag: v9.5.0-rc1~665^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14660%2Fhead;p=dealii.git Use std::array instead of a C-style array. --- 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