diff --git a/src/osgPlugins/dx/DXWriter.cpp b/src/osgPlugins/dx/DXWriter.cpp index 0ec2e8ef1..3589aa824 100644 --- a/src/osgPlugins/dx/DXWriter.cpp +++ b/src/osgPlugins/dx/DXWriter.cpp @@ -2361,6 +2361,13 @@ void DXWriter::ReportUnhandledModesAndAttrs() // the StateSetVisitor traversal using node.traverse, which continues // traversal on the node's children. +// need to add this to get round incompatibilities between the MipsPro7.3 +// and VisualStudio compiles handling of NodeVisitor:: method calls, VS +// seems broke so can't handle osg::NodeVisitor intpreting it as a +// static method call?!? Anyway no osg:: but using namespace osg seems to +// keep both happy. Robert, Feb 2002. +using namespace osg; + class StateSetVisitor; class StateSetActionVisitor : public osg::NodeVisitor