Skip to content

Commit

Permalink
Merge pull request #14660 from bangerth/array
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Jan 10, 2023
2 parents d439ee8 + 03fd835 commit 73aaa7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deal.II/base/data_out_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ namespace DataOutBase
* For other kinds of cells (triangles, tetrahedra, etc.), only the
* first few elements of this array will be used.
*/
Point<spacedim> vertices[GeometryInfo<dim>::vertices_per_cell];
std::array<Point<spacedim>, GeometryInfo<dim>::vertices_per_cell> vertices;

/**
* Patch indices of neighbors of the current patch. This is made available
Expand Down

0 comments on commit 73aaa7a

Please sign in to comment.