Fixed compile problems under VisualStudio6.0

This commit is contained in:
Robert Osfield
2002-06-05 14:14:32 +00:00
parent c70f5240eb
commit dc00711337
3 changed files with 13 additions and 3 deletions

View File

@@ -3,6 +3,8 @@
#include <osg/CopyOp>
#include <osg/Node>
using namespace osg;
osgParticle::ParticleSystemUpdater::ParticleSystemUpdater()
: osg::Node(), t0_(-1)
{
@@ -33,5 +35,5 @@ void osgParticle::ParticleSystemUpdater::traverse(osg::NodeVisitor &nv)
}
t0_ = t;
}
osg::Node::traverse(nv);
Node::traverse(nv);
}