From Jason Beverage, "The _pluginData member variable is not properly copied when using the copy constructor for ReaderWriter::Options."

This commit is contained in:
Robert Osfield
2008-11-21 12:10:27 +00:00
parent 6962b9e49f
commit 05cd6878a5

View File

@@ -124,7 +124,8 @@ class OSGDB_EXPORT ReaderWriter : public osg::Object
_str(options._str),
_databasePaths(options._databasePaths),
_objectCacheHint(options._objectCacheHint),
_buildKdTreesHint(options._buildKdTreesHint) {}
_buildKdTreesHint(options._buildKdTreesHint),
_pluginData(options._pluginData){}
META_Object(osgDB,Options);