diff --git a/base/math.hpp b/base/math.hpp index ecf60e09fb..616527e839 100644 --- a/base/math.hpp +++ b/base/math.hpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include #include @@ -55,10 +56,10 @@ bool AlmostEqualULPs(Float x, Float y, unsigned int maxULPs = 256) int const bits = CHAR_BIT * sizeof(Float); typedef typename boost::int_t::exact IntType; typedef typename boost::uint_t::exact UIntType; - - IntType xInt = *reinterpret_cast(&x); - IntType yInt = *reinterpret_cast(&y); - + IntType xInt, yInt; + static_assert(sizeof(xInt) == sizeof(x), "bit_cast impossible"); + std::memcpy(&xInt, &x, sizeof(x)); + std::memcpy(&yInt, &y, sizeof(y)); // Make xInt and yInt lexicographically ordered as a twos-complement int IntType const highestBit = IntType(1) << (bits - 1); if (xInt < 0)