From 3d47bc5f87071c819c5052ae4631b1f9ddbc710e Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 5 Sep 2023 15:09:05 +0300 Subject: [PATCH] Try to fix old clang build v2 --- include/helpers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/helpers.hpp b/include/helpers.hpp index cd646c6d..afebc959 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -137,7 +137,7 @@ namespace Helpers { return getBits(value); } -#if defined(HELPERS_APPLE_CLANG) || defined(__ANDROID__) || (defined(__clang_major__) && __clang_major__ <= 14) +#if defined(HELPERS_APPLE_CLANG) || defined(__ANDROID__) || !defined(__cpp_lib_bit_cast) template constexpr To bit_cast(const From& from) noexcept { return *reinterpret_cast(&from);