Update Combinatorial_map/doc/Combinatorial_map/Combinatorial_map.txt

Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
Guillaume Damiand 2022-06-21 10:11:47 +02:00 committed by GitHub
parent 38eab599ee
commit 46e64077af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ typedef CGAL::Combinatorial_map<3, Example_items_3> Example_custom_cmap3;
\subsection ssecCMapIndicesHandles Indices or Handles
By default, descriptors used to access darts and attributes are handles, and the darts and attributes are stored in a `Compact_container`. To use the index version, you should define the type `Use_index` equal to `CGAL::Tag_true` in the item class like in the code below. You can also define the type `Index_type` used to store indices (std::uint32_t by default when this type is not defined).
By default, descriptors used to access darts and attributes are handles, and the darts and attributes are stored in a `Compact_container`. To use the index version, you should define the type `Use_index` to `CGAL::Tag_true` in the item class like in the code below. You can also define the type `Index_type` used to store indices (`std::uint32_t` by default when this type is not defined).
\code{.cpp}