Changed from a -> to *() when using the object pointed to by a reverse iterator,

to fix problems with build under VS6/STLport.
This commit is contained in:
Robert Osfield
2002-07-17 16:24:55 +00:00
parent 6524548eb2
commit 735b9d2318

View File

@@ -201,7 +201,7 @@ void CollectOccludersVisitor::removeOccludedOccluders()
holeItr!=holeList.rend();
)
{
if (occluder->contains(holeItr->getReferenceVertexList()))
if (occluder->contains((*holeItr).getReferenceVertexList()))
{
holeList.erase((++holeItr).base());
}