From 2efea8072846d625356392768f00980a9e74a700 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 5 Apr 2004 09:00:37 +0000 Subject: [PATCH] From Nathan Cournia, fix to = operator, was eroneous written as an == operator. --- include/osgDB/DynamicLibrary | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgDB/DynamicLibrary b/include/osgDB/DynamicLibrary index e8841fce9..0079155b9 100644 --- a/include/osgDB/DynamicLibrary +++ b/include/osgDB/DynamicLibrary @@ -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