From 70bb34af6a78e96594c72d431dcc02a486983bc4 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 18 Nov 2004 09:09:22 +0000 Subject: [PATCH] From Stephane Simon, compile fix for VS, change struct to class in forward declaration. --- include/osgDB/DatabasePager | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgDB/DatabasePager b/include/osgDB/DatabasePager index f847f4782..bd7e70528 100644 --- a/include/osgDB/DatabasePager +++ b/include/osgDB/DatabasePager @@ -258,8 +258,8 @@ class OSGDB_EXPORT DatabasePager : public osg::NodeVisitor::DatabaseRequestHandl class FindPagedLODsVisitor; friend class FindPagedLODsVisitor; - class SortFileRequestFunctor; - friend class SortFileRequestFunctor; + struct SortFileRequestFunctor; + friend struct SortFileRequestFunctor; OpenThreads::Mutex _run_mutex;