Просмотр исходного кода

Make Radian::valueDegrees() not inline

Marc Legendre 9 лет назад
Родитель
Сommit
58ca7b0ccb
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      Source/BansheeUtility/Source/BsRadian.cpp

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

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