From 804805d35a87c2acc9425d1762ad26b1ba2ec9ac Mon Sep 17 00:00:00 2001 From: Samuel Barney Date: Wed, 29 Jul 2015 09:04:03 -0600 Subject: Silenced and fixed many warning messages across multiple files. --- src/Matrix4.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Matrix4.h') diff --git a/src/Matrix4.h b/src/Matrix4.h index 0558fa5f3..a5d6017d0 100644 --- a/src/Matrix4.h +++ b/src/Matrix4.h @@ -98,8 +98,8 @@ public: inline void RotateZ(T a_RZ) { - T sz = (T) sin(a_RZ * M_PI / 180); - T cz = (T) cos(a_RZ * M_PI / 180); + T sz = static_cast(sin(a_RZ * M_PI / 180)); + T cz = static_cast(cos(a_RZ * M_PI / 180)); Identity(); -- cgit v1.2.3