From 3db6aa255f63a68b25f2dd0f8daf819abdaebfa6 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 19 May 2016 17:38:50 +0100 Subject: [PATCH] Removed redundent #if OSG_USE_BOUND block --- examples/osgoit/HeatMap.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/osgoit/HeatMap.cpp b/examples/osgoit/HeatMap.cpp index 15f6f3e1b..7e069c5d9 100644 --- a/examples/osgoit/HeatMap.cpp +++ b/examples/osgoit/HeatMap.cpp @@ -82,11 +82,7 @@ public: // an attempt to return a reasonable bounding box. Still does not prevent clipping of the heat map. virtual const osg::BoundingBox& getBoundingBox() const {return m_bounds;} virtual osg::BoundingBox computeBoundingBox() const {return m_bounds;} -#ifdef OSG_USE_BOUND - virtual osg::Bound getBound() const { return osg::Bound(m_bounds, m_bounds); } -#else virtual const osg::BoundingSphere& getBound() const {return m_bsphere;} -#endif protected: osg::BoundingBox m_bounds;