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;}