From 71f7a740915d82eff1857d2beb07017b2e034547 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 25 Jun 2014 08:21:13 +0000 Subject: [PATCH] =?UTF-8?q?From=20Bj=C3=B6rn=20Blissing,=20"I=20found=20a?= =?UTF-8?q?=20minor=20error=20in=20documentation=20in=20include/osg/Math.?= =?UTF-8?q?=20Function:=20absolute()=20had=20the=20same=20description=20as?= =?UTF-8?q?=20the=20function=20minimum()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I removed the erroneous text." git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14273 16af8721-9629-0410-8352-f15c8da7e697 --- include/osg/Math | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/osg/Math b/include/osg/Math index ecf851b03..1ea7c0d51 100644 --- a/include/osg/Math +++ b/include/osg/Math @@ -34,10 +34,6 @@ const double LN_2 = 0.69314718055994530942; const double INVLN_2 = 1.0 / LN_2; -/** return the minimum of two values, equivalent to std::min. - * std::min not used because of STL implementation under IRIX not - * containing std::min. -*/ template inline T absolute(T v) { return v<(T)0?-v:v; }