Skip to content

Commit

Permalink
Merge pull request #4 from xlab-sfc/OF098
Browse files Browse the repository at this point in the history
modify library for of0.9.8
  • Loading branch information
NickHardeman authored Jun 4, 2018
2 parents c4dd215 + 49a7642 commit be3ba88
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/LibGizmo/ZMathsFunc.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ inline float MathCoonsCubicSplineF4(float t)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathCos(const float f)
inline float MathCos(const float f)
{
#ifdef PSM_GCC
return (float)cos(f);
Expand All @@ -453,7 +453,7 @@ __forceinline float MathCos(const float f)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathSin(const float f)
inline float MathSin(const float f)
{
#ifdef PSM_GCC
return (float)sin(f);
Expand All @@ -464,7 +464,7 @@ __forceinline float MathSin(const float f)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathTan(const float f)
inline float MathTan(const float f)
{
#ifdef PSM_GCC
return (float)tan(f);
Expand All @@ -475,7 +475,7 @@ __forceinline float MathTan(const float f)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathACos(const float f)
inline float MathACos(const float f)
{
#ifdef PSM_GCC
return (float)acos(f);
Expand All @@ -500,7 +500,7 @@ __forceinline float MathACos(const float f)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathASin(const float f)
inline float MathASin(const float f)
{
#ifdef PSM_GCC
return (float)asin(f);
Expand All @@ -511,7 +511,7 @@ __forceinline float MathASin(const float f)

///////////////////////////////////////////////////////////////////////////////////////////////////

__forceinline float MathATan(const float f)
inline float MathATan(const float f)
{
#ifdef PSM_GCC
return atan(f);
Expand Down

0 comments on commit be3ba88

Please sign in to comment.