From b91df6c867c4fdb9fea9a137ba961354a575fdd1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 18 Jan 2008 21:08:42 +0000 Subject: [PATCH] Removed erroneous const in method parameter --- src/osg/ClipNode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/ClipNode.cpp b/src/osg/ClipNode.cpp index 0e1ff763e..1f2524608 100644 --- a/src/osg/ClipNode.cpp +++ b/src/osg/ClipNode.cpp @@ -133,7 +133,7 @@ void ClipNode::setStateSetModes(StateSet& stateset,StateAttribute::GLModeValue v } } -void ClipNode::setLocalStateSetModes(const StateAttribute::GLModeValue value) +void ClipNode::setLocalStateSetModes(StateAttribute::GLModeValue value) { _value = value; if (!_stateset) _stateset = new StateSet;