mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Use C-style cast
Use C-style cast to avoid compile errors on clang-cl.
This commit is contained in:
parent
d2a8d077a6
commit
7f559f837f
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user