From bafc126edab05dd071f31a7a2bb848bb64a9166c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 7 Sep 2004 10:31:30 +0000 Subject: [PATCH] From Paul Martz, removed redundent paramaters in clampArray4LEQUAL. --- include/osg/BoundsChecking | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/BoundsChecking b/include/osg/BoundsChecking index 7ee030f94..48f78d54b 100644 --- a/include/osg/BoundsChecking +++ b/include/osg/BoundsChecking @@ -194,7 +194,7 @@ inline void clampArray4GEQUAL(A& value,const T minValue,const char* valueName) * less than or equal to maxValue do nothing - legal value, Otherwise clamp * the element to maxValue, and warn that valueName[i] was clamped. */ template -inline void clampArray4LEQUAL(A& value,unsigned int first,unsigned int last,const T maxValue,const char* valueName) +inline void clampArray4LEQUAL(A& value,const T maxValue,const char* valueName) { clampArrayElementsLEQUAL(value,0u,3u,maxValue,valueName); }