Bug fix: definition of Self and Base in class Cell_attribute_with_point when using index.

This commit is contained in:
Guillaume Damiand 2024-06-05 11:00:18 +02:00
parent 94b9726a46
commit c0c768b2bb
1 changed files with 2 additions and 2 deletions

View File

@ -91,10 +91,10 @@ namespace CGAL {
public:
typedef Cell_attribute_with_point<LCC, Info_, Tag, Functor_on_merge_,
Functor_on_split_> Self;
Functor_on_split_, WithID> Self;
typedef Cell_attribute<LCC, Info_, Tag,
Functor_on_merge_, Functor_on_split_> Base1;
Functor_on_merge_, Functor_on_split_, WithID> Base1;
typedef Point_for_cell<typename LCC::Point> Base2;
typedef typename LCC::Point Point;