fix compiler warnings

This commit is contained in:
Dick Hollenbeck 2014-01-03 17:16:40 -06:00
parent eb22bf426c
commit e659d53590
1 changed files with 5 additions and 4 deletions

View File

@ -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];
} }