Hi Mathias, To help fix this problem I done two things, first up I refactored the code so that the RequestQueue has a sort method that is called by the places where previously the list::sort() was being called from, this centralised the code so that we only have one code path for the sort code. Second change was to change the code to use a std::vector<> rather than std::list<>, this moves the code back to how it was in 2.4 and before so I'd expect it to work.
Implementation wise it doesn't make too much difference between using a std::vector<> and std::list so I'd expect this change will perform just as well, but with the advantage that it'll be more self contained and portable. When you are next near the Solaris box could you do an svn update and see how things now compile. Fingers crossed we'll be a little closer to get things compile across all platforms once again. Robert. _______________________________________________ osg-submissions mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
