Eliminate an unsigned-int comparison warning.

This commit is contained in:
david 2002-05-10 21:31:15 +00:00
parent 761b7b9354
commit 972223cd50

View File

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