Merge pull request #153 from wheremyfoodat/wheremyfoodat-patch-2

Fix helpers.hpp on Android
This commit is contained in:
wheremyfoodat
2023-07-31 16:57:26 +03:00
committed by GitHub

View File

@@ -125,7 +125,7 @@ namespace Helpers {
return getBits<offset, bits, ValueT, ValueT>(value); return getBits<offset, bits, ValueT, ValueT>(value);
} }
#ifdef HELPERS_APPLE_CLANG #if defined(HELPERS_APPLE_CLANG) || defined(__ANDROID__)
template <class To, class From> template <class To, class From>
constexpr To bit_cast(const From& from) noexcept { constexpr To bit_cast(const From& from) noexcept {
return *reinterpret_cast<const To*>(&from); return *reinterpret_cast<const To*>(&from);