Use C-style cast

Use C-style cast to avoid compile errors on clang-cl.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 21:12:41 +02:00
parent d2a8d077a6
commit 7f559f837f

View File

@ -165,9 +165,9 @@ public:
inline bool IsZeroFast() const RESTRICT
{
static_assert(sizeof(vec_t) == sizeof(int));
return (*reinterpret_cast<const int*>(&x) == 0 &&
*reinterpret_cast<const int*>(&y) == 0 &&
*reinterpret_cast<const int*>(&z) == 0);
return (*(int*)(&x) == 0 &&
*(int*)(&y) == 0 &&
*(int*)(&z) == 0);
}
vec_t NormalizeInPlace(); ///< Normalize all components