mirror of https://github.com/CGAL/cgal
same modif than r63563 - branches/candidate-packages/Combinatorial_map/include/CGAL
This commit is contained in:
parent
0bac9ece26
commit
6dbb62caee
|
|
@ -135,13 +135,17 @@ namespace CGAL {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void * for_compact_container() const
|
void * for_compact_container() const
|
||||||
{ return &mrefcounting; }
|
{ return vp; }
|
||||||
void * & for_compact_container()
|
void * & for_compact_container()
|
||||||
{ return &mrefcounting; }
|
{ return vp; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// Reference counting: the number of darts linked to this cell.
|
/// Reference counting: the number of darts linked to this cell.
|
||||||
|
union
|
||||||
|
{
|
||||||
unsigned int mrefcounting;
|
unsigned int mrefcounting;
|
||||||
|
void *vp;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Definition of cell attribute.
|
/** Definition of cell attribute.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue