From f42481b60f32ae6544b66819223b6d0d90662e97 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 19 Sep 2013 16:18:20 +0000 Subject: [PATCH] Removed unneccessary return --- include/osgPresentation/Group | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgPresentation/Group b/include/osgPresentation/Group index 3461c3ecd..3d26be58f 100644 --- a/include/osgPresentation/Group +++ b/include/osgPresentation/Group @@ -73,7 +73,7 @@ class OSGPRESENTATION_EXPORT Group : public osg::MatrixTransform template void setProperty(const std::string& name, const T& value) { - return setUserValue(name, value); + setUserValue(name, value); } /** Check for named Property, if it doesn't exist on this object check parents recursively for instances.*/