Fix range requirements

This commit is contained in:
Mael Rouxel-Labbé 2024-01-22 13:33:14 +01:00
parent c4002be297
commit 932098c897
1 changed files with 3 additions and 3 deletions

View File

@ -64,19 +64,19 @@ public:
/*!
A container for the cells incident to an edge.
Must be a model of the concept `Range` whose value type is `Cell_descriptor`.
Must be a model of the concept `ForwardRange` whose value type is `Cell_descriptor`.
*/
typedef unspecified_type Cells_incident_to_edge;
/*!
A container for the vertices of a cell.
Must be a model of the concept `Range` whose value type is `Vertex_descriptor`.
Must be a model of the concept `ForwardRange` whose value type is `Vertex_descriptor`.
*/
typedef unspecified_type Cell_vertices;
/*!
A container for the edges of a cell.
Must be a model of the concept `Range` whose value type is `Edge_descriptor`.
Must be a model of the concept `ForwardRange` whose value type is `Edge_descriptor`.
*/
typedef unspecified_type Cell_edges;