From 88234ea31fdc81ecb92463e06f4ed3989eff48b5 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 14 Dec 2004 03:12:18 +0000 Subject: [PATCH] Removed redundent cont qualification --- include/osg/CullSettings | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/osg/CullSettings b/include/osg/CullSettings index d712ff5f3..10c4e9445 100644 --- a/include/osg/CullSettings +++ b/include/osg/CullSettings @@ -172,13 +172,13 @@ class SG_EXPORT CullSettings CullingMode getCullingMode() const { return _cullingMode; } - void setCullMask(const osg::Node::NodeMask nm) { _cullMask = nm; } + void setCullMask(osg::Node::NodeMask nm) { _cullMask = nm; } osg::Node::NodeMask getCullMask() const { return _cullMask; } - void setCullMaskLeft(const osg::Node::NodeMask nm) { _cullMaskLeft = nm; } + void setCullMaskLeft(osg::Node::NodeMask nm) { _cullMaskLeft = nm; } osg::Node::NodeMask getCullMaskLeft() const { return _cullMaskLeft; } - void setCullMaskRight(const osg::Node::NodeMask nm) { _cullMaskRight = nm; } + void setCullMaskRight(osg::Node::NodeMask nm) { _cullMaskRight = nm; } osg::Node::NodeMask getCullMaskRight() const { return _cullMaskRight; } /** Set the LOD bias for the CullVisitor to use.*/