Eliminate an unsigned-int comparison warning.
This commit is contained in:
parent
761b7b9354
commit
972223cd50
@ -1977,7 +1977,7 @@ SGPropertyNode::hash_table::hash_table ()
|
||||
|
||||
SGPropertyNode::hash_table::~hash_table ()
|
||||
{
|
||||
for (int i = 0; i < _data_length; i++)
|
||||
for (unsigned int i = 0; i < _data_length; i++)
|
||||
delete _data[i];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user