fix compiler warnings
This commit is contained in:
parent
eb22bf426c
commit
e659d53590
|
@ -803,7 +803,8 @@ void Sweep::FlipScanEdgeEvent(SweepContext& tcx, Point& ep, Point& eq, Triangle&
|
||||||
Sweep::~Sweep() {
|
Sweep::~Sweep() {
|
||||||
|
|
||||||
// Clean up memory
|
// Clean up memory
|
||||||
for(int i = 0; i < nodes_.size(); i++) {
|
for( unsigned i = 0; i < nodes_.size(); i++ )
|
||||||
|
{
|
||||||
delete nodes_[i];
|
delete nodes_[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue