From c50e5fcc344d00b03eb4a3141b5b45944c3570fd Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 7 Aug 2020 18:24:59 +0200 Subject: Cleanup: use C++ style casts in various places --- source/blender/blenlib/BLI_float3.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenlib/BLI_float3.hh') diff --git a/source/blender/blenlib/BLI_float3.hh b/source/blender/blenlib/BLI_float3.hh index a976e909738..2d90498fee8 100644 --- a/source/blender/blenlib/BLI_float3.hh +++ b/source/blender/blenlib/BLI_float3.hh @@ -31,7 +31,7 @@ struct float3 { { } - float3(const float (*ptr)[3]) : float3((const float *)ptr) + float3(const float (*ptr)[3]) : float3(static_cast(ptr[0])) { } @@ -204,9 +204,9 @@ struct float3 { uint64_t hash() const { - uint64_t x1 = *(uint32_t *)&x; - uint64_t x2 = *(uint32_t *)&y; - uint64_t x3 = *(uint32_t *)&z; + uint64_t x1 = *reinterpret_cast(&x); + uint64_t x2 = *reinterpret_cast(&y); + uint64_t x3 = *reinterpret_cast(&z); return (x1 * 435109) ^ (x2 * 380867) ^ (x3 * 1059217); } -- cgit v1.2.3