From Nathan Cournia, fix to = operator, was eroneous written as an == operator.

This commit is contained in:
Robert Osfield
2004-04-05 09:00:37 +00:00
parent 398fa56bb4
commit 2efea80728

View File

@@ -59,7 +59,7 @@ class OSGDB_EXPORT DynamicLibrary : public osg::Referenced
/** disallow copy constructor.*/
DynamicLibrary(const DynamicLibrary&):osg::Referenced() {}
/** disallow copy operator.*/
DynamicLibrary& operator == (const DynamicLibrary&) { return *this; }
DynamicLibrary& operator = (const DynamicLibrary&) { return *this; }
/** Disallow public construction so that users have to go
* through loadLibrary() above which returns NULL on