From 7f559f837f221cb5e901fac315a387814fa1086b Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 1 Apr 2023 21:12:41 +0200 Subject: [PATCH] Use C-style cast Use C-style cast to avoid compile errors on clang-cl. --- r5dev/mathlib/vector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/mathlib/vector.h b/r5dev/mathlib/vector.h index 538b4456..981ddfb9 100644 --- a/r5dev/mathlib/vector.h +++ b/r5dev/mathlib/vector.h @@ -165,9 +165,9 @@ public: inline bool IsZeroFast() const RESTRICT { static_assert(sizeof(vec_t) == sizeof(int)); - return (*reinterpret_cast(&x) == 0 && - *reinterpret_cast(&y) == 0 && - *reinterpret_cast(&z) == 0); + return (*(int*)(&x) == 0 && + *(int*)(&y) == 0 && + *(int*)(&z) == 0); } vec_t NormalizeInPlace(); ///< Normalize all components