mirror of https://github.com/CGAL/cgal
Fix another warning
This commit is contained in:
parent
c08c632fc8
commit
0460176a2b
|
|
@ -87,7 +87,7 @@ public:
|
||||||
const T& get_and_erase(const K& k) const
|
const T& get_and_erase(const K& k) const
|
||||||
{
|
{
|
||||||
unsigned int h = hash(k)%M;
|
unsigned int h = hash(k)%M;
|
||||||
int i = h;
|
unsigned int i = h;
|
||||||
do{
|
do{
|
||||||
if((occupied[i] == 1) && (data[i].first == k)){
|
if((occupied[i] == 1) && (data[i].first == k)){
|
||||||
occupied[i] = -1;
|
occupied[i] = -1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue