Fixed missing initializer in Options constrctor

This commit is contained in:
Robert Osfield
2007-03-29 19:39:20 +00:00
parent 0f507e317d
commit 5ba0e5b930

View File

@@ -83,7 +83,7 @@ class OSGDB_EXPORT ReaderWriter : public osg::Object
Options():_objectCacheHint(CACHE_ARCHIVES) {}
Options(const std::string& str):_str(str) {}
Options(const std::string& str):_str(str), _objectCacheHint(CACHE_ARCHIVES) {}
Options(const Options& options,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY):
osg::Object(options,copyop),