From e1c3c531dde218ca36ca53de4d279ad3ff525d64 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 16 Mar 2015 23:29:13 +0100 Subject: [PATCH] Fixed warnings --- glm/detail/func_integer.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glm/detail/func_integer.inl b/glm/detail/func_integer.inl index 6d204b40..20e29d6f 100644 --- a/glm/detail/func_integer.inl +++ b/glm/detail/func_integer.inl @@ -248,8 +248,8 @@ namespace detail GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch"); uint64 Value64 = static_cast(x) * static_cast(y); - msb = Value64 >> 32; - lsb = Value64; + msb = static_cast(Value64 >> static_cast(32)); + lsb = static_cast(Value64); } template class vecType> @@ -268,8 +268,8 @@ namespace detail GLM_STATIC_ASSERT(sizeof(int) == sizeof(int32), "int and int32 size mismatch"); int64 Value64 = static_cast(x) * static_cast(y); - msb = Value64 >> 32; - lsb = Value64; + msb = static_cast(Value64 >> static_cast(32)); + lsb = static_cast(Value64); } template class vecType>