From 0c1264f54791f8ab7421de42351ecb66a4f41d3c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 13 Feb 2002 22:52:07 +0000 Subject: [PATCH] Fixed the fabsf define which was eroneous mapped to sqrtf, due to the copy and paste antipattern no doubt. --- include/osg/GeoSet | 2 +- include/osg/Math | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/GeoSet b/include/osg/GeoSet index 258f77cd0..9af4e1748 100644 --- a/include/osg/GeoSet +++ b/include/osg/GeoSet @@ -682,7 +682,7 @@ void for_each_triangle(GeoSet& gset,T& op) break; } -}; +} } diff --git a/include/osg/Math b/include/osg/Math index 5b944f36e..56b74cde2 100644 --- a/include/osg/Math +++ b/include/osg/Math @@ -49,7 +49,7 @@ #endif #ifndef fabsf -#define fabs (float)sqrt +#define fabsf (float)fabs #endif