It looks like you need to do this:

        bool operator < (const GenHit& hit) const
        {
                if (_originalGen<hit._originalGen) return true;
                if (_originalGen==hit._originalGen) return
_ratio<hit._ratio;
               return false;
        }

Oops. Been up too long :) Thanks.
But to the point, is the == overloaded in such a way that it works as
one would expect in this context?

Thanks,
Eric
_______________________________________________
osg-users mailing list
[email protected]
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/

Reply via email to