Browse Source

Make Radian::valueDegrees() not inline

Marc Legendre 9 years ago
parent
commit
58ca7b0ccb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/BansheeUtility/Source/BsRadian.cpp

+ 2 - 2
Source/BansheeUtility/Source/BsRadian.cpp

@@ -46,8 +46,8 @@ namespace BansheeEngine
 		return *this;
 		return *this;
 	}
 	}
 
 
-	inline float Radian::valueDegrees() const
+	float Radian::valueDegrees() const
 	{
 	{
 		return mRad * Math::RAD2DEG;
 		return mRad * Math::RAD2DEG;
 	}
 	}
-}
+}