Changed back to use an std::vector<> rather than a std::list for RequestQueue to
avoid member template problems under Solaris.
This commit is contained in:
@@ -347,7 +347,7 @@ class OSGDB_EXPORT DatabasePager : public osg::NodeVisitor::DatabaseRequestHandl
|
||||
|
||||
struct RequestQueue : public osg::Referenced
|
||||
{
|
||||
typedef std::list< osg::ref_ptr<DatabaseRequest> > RequestList;
|
||||
typedef std::vector< osg::ref_ptr<DatabaseRequest> > RequestList;
|
||||
|
||||
void sort();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user