mirror of https://github.com/CGAL/cgal
Use different number types for lcc with index in tests.
This commit is contained in:
parent
31f5aa5ad0
commit
d3e88f29b8
|
|
@ -54,6 +54,7 @@ struct Myitems_2b
|
|||
{
|
||||
#ifdef USE_COMPACT_CONTAINER_WITH_INDEX
|
||||
typedef CGAL::Tag_true Use_index;
|
||||
using Index_type=std::uint16_t;
|
||||
#endif
|
||||
template <class LCC>
|
||||
struct Dart_wrapper
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ struct Myitems_3b
|
|||
{
|
||||
#ifdef USE_COMPACT_CONTAINER_WITH_INDEX
|
||||
typedef CGAL::Tag_true Use_index;
|
||||
using Index_type=std::uint32_t;
|
||||
#endif
|
||||
template <class LCC>
|
||||
struct Dart_wrapper
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ struct Myitems_4b
|
|||
{
|
||||
#ifdef USE_COMPACT_CONTAINER_WITH_INDEX
|
||||
typedef CGAL::Tag_true Use_index;
|
||||
using Index_type=std::uint64_t;
|
||||
#endif
|
||||
template <class LCC>
|
||||
struct Dart_wrapper
|
||||
|
|
|
|||
Loading…
Reference in New Issue