Fixed the fabsf define which was eroneous mapped to sqrtf, due to the copy and

paste antipattern no doubt.
This commit is contained in:
Robert Osfield
2002-02-13 22:52:07 +00:00
parent 2624162b0e
commit 0c1264f547
2 changed files with 2 additions and 2 deletions

View File

@@ -682,7 +682,7 @@ void for_each_triangle(GeoSet& gset,T& op)
break;
}
};
}
}

View File

@@ -49,7 +49,7 @@
#endif
#ifndef fabsf
#define fabs (float)sqrt
#define fabsf (float)fabs
#endif