From 61d317b0b82d2dc9676e97b1244d25dceafeaa08 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 25 Sep 2015 15:20:32 +0000 Subject: [PATCH] From Kristofer Tingdahl, "we had a minor shadow problem with the osg-3.4 that pollutes our continuous integration" git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4@15144 16af8721-9629-0410-8352-f15c8da7e697 --- include/osg/BoundingSphere | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/BoundingSphere b/include/osg/BoundingSphere index 5ec81f3eb..0b62c2cdd 100644 --- a/include/osg/BoundingSphere +++ b/include/osg/BoundingSphere @@ -44,7 +44,7 @@ class BoundingSphereImpl BoundingSphereImpl() : _center(0.0,0.0,0.0),_radius(-1.0) {} /** Creates a bounding sphere initialized to the given extents. */ - BoundingSphereImpl(const vec_type& center, value_type radius) : _center(center),_radius(radius) {} + BoundingSphereImpl(const vec_type& cntr, value_type rad) : _center(cntr),_radius(rad) {} /** Creates a bounding sphere initialized to the given extents. */ BoundingSphereImpl(const BoundingSphereImpl& bs) : _center(bs._center),_radius(bs._radius) {}