From 534af3aeaf857aba0624a5ad966b7b2e5f19f967 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 8 Aug 2010 15:44:03 +0000 Subject: [PATCH] Removed the erroneous subclassing from osg::Observer --- include/osg/observer_ptr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/observer_ptr b/include/osg/observer_ptr index 174ce544e..5ea34fb1a 100644 --- a/include/osg/observer_ptr +++ b/include/osg/observer_ptr @@ -35,7 +35,7 @@ namespace osg { * If you are in any doubt about whether it is safe to access the object safe then use * ref_ptr<> observer_ptr<>.lock() combination. */ template -class observer_ptr : public Observer +class observer_ptr { public: typedef T element_type;