Copy constructor signature fix

c++11
scrawl 10 years ago
parent d9a00288f8
commit 347c9b57b8

@ -69,7 +69,7 @@ ParticleShooter::ParticleShooter()
{ {
} }
ParticleShooter::ParticleShooter(const osgParticle::Shooter &copy, const osg::CopyOp &copyop) ParticleShooter::ParticleShooter(const ParticleShooter &copy, const osg::CopyOp &copyop)
: osgParticle::Shooter(copy, copyop) : osgParticle::Shooter(copy, copyop)
{ {
*this = copy; *this = copy;

@ -76,7 +76,7 @@ namespace NifOsg
ParticleShooter(float minSpeed, float maxSpeed, float horizontalDir, float horizontalAngle, float verticalDir, float verticalAngle, ParticleShooter(float minSpeed, float maxSpeed, float horizontalDir, float horizontalAngle, float verticalDir, float verticalAngle,
float lifetime, float lifetimeRandom); float lifetime, float lifetimeRandom);
ParticleShooter(); ParticleShooter();
ParticleShooter(const Shooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY); ParticleShooter(const ParticleShooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
META_Object(NifOsg, ParticleShooter) META_Object(NifOsg, ParticleShooter)

Loading…
Cancel
Save