From 7f19c7833e4103b513c645739fac2f51937c6b11 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 16 Nov 2005 21:08:16 +0000 Subject: [PATCH] Removed redundent copyop. --- src/osgPlugins/geo/osgGeoNodes.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/geo/osgGeoNodes.h b/src/osgPlugins/geo/osgGeoNodes.h index a5d18982d..0e0836383 100644 --- a/src/osgPlugins/geo/osgGeoNodes.h +++ b/src/osgPlugins/geo/osgGeoNodes.h @@ -85,8 +85,10 @@ private: class userVars { public: userVars() {} - userVars(const userVars &iv, const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY ) { - vars=iv.vars; } + userVars(const userVars &iv) + { + vars=iv.vars; + } ~userVars() {} unsigned int number() { return vars.size();} std::vector *getvars() { return &vars;}