mirror of https://github.com/CGAL/cgal
fix bad conversion on push back on some platforms
This commit is contained in:
parent
7b26494d30
commit
ecf72f5db2
|
|
@ -817,7 +817,7 @@ public:
|
|||
CGAL_precondition(k != Point_key());
|
||||
unsigned int bin= k.index();
|
||||
while (vhs_.size() <= bin) {
|
||||
vhs_.push_back(NULL);
|
||||
vhs_.push_back(Vertex_handle(NULL));
|
||||
}
|
||||
/*if (vhs_.size() <=bin){
|
||||
vhs_.resize(bin+1);
|
||||
|
|
|
|||
Loading…
Reference in New Issue