From 7a14b224ede4c1dab5752978ea55afaa86d5160e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 28 Jun 2014 06:22:47 +0000 Subject: [PATCH] Replaced using NodeCallback::run with explict run() implementation. git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14322 16af8721-9629-0410-8352-f15c8da7e697 --- include/osg/ClusterCullingCallback | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/ClusterCullingCallback b/include/osg/ClusterCullingCallback index 8c1a444ae..f0759ac73 100644 --- a/include/osg/ClusterCullingCallback +++ b/include/osg/ClusterCullingCallback @@ -34,7 +34,7 @@ class OSG_EXPORT ClusterCullingCallback : public Drawable::CullCallback, public META_Object(osg,ClusterCullingCallback); // use the NodeCallbacks implementation of run. - using NodeCallback::run; + virtual bool run(osg::Object* object, osg::Object* data) { return NodeCallback::run(object, data); } /** Computes the control point, normal, and deviation from the * given drawable contents. */