From 23cd6d2ba3e6ce2386703f77d2d42231395cbb4d Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 4 Jun 2015 09:00:17 +0000 Subject: [PATCH] From Jannik Heller, "In the attachment you will find a build fix for the latest trunk. osgAnimation failed to compile when using OSG_USE_REF_PTR_IMPLICIT_OUTPUT_CONVERSION=OFF ." git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14892 16af8721-9629-0410-8352-f15c8da7e697 --- include/osgAnimation/UpdateUniform | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgAnimation/UpdateUniform b/include/osgAnimation/UpdateUniform index c955d43ca..b18da559f 100644 --- a/include/osgAnimation/UpdateUniform +++ b/include/osgAnimation/UpdateUniform @@ -42,7 +42,7 @@ namespace osgAnimation bool link(Channel* channel) { if (channel->getName().find("uniform") != std::string::npos) - return channel->setTarget(_uniformTarget); + return channel->setTarget(_uniformTarget.get()); else OSG_WARN << "Channel " << channel->getName() << " does not contain a valid symbolic name for this class " << className() << std::endl;