ok, fixed this problem with typedefs in gcc-0.92 (strange....)

This commit is contained in:
mac 2000-08-23 13:07:51 +00:00
commit ca46a3651b

View file

@ -28,16 +28,9 @@ public :
if (_size < 1) if (_size < 1)
return; return;
if (size() > _size) while (size() > _size)
{ {
Subtree* sub = &operator[](size() - 2); // prune tree back() = operator[](size()-2);
while (sub->size() > _size)
{
sub = &sub->operator[](0);
}
back() = *sub;
} }
} }