diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-07 22:42:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 22:42:19 -0500 |
commit | b014fdacdbb19491b9169df7e987293b4e851481 (patch) | |
tree | a5ceb18ca49f21fa1c8dc4872b6f7b154fd73ca6 /src/common/bit_cast.h | |
parent | 757aafa582af0f1647770988063ba718565d4ef9 (diff) | |
parent | 64dcb40db139ce1aa79dff16ce863a8d5389199f (diff) |
Merge pull request #9920 from liamwhite/constexpr-bit-cast
common: make BitCast constexpr
Diffstat (limited to 'src/common/bit_cast.h')
-rw-r--r-- | src/common/bit_cast.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/common/bit_cast.h b/src/common/bit_cast.h index 535148b4d..c6110c542 100644 --- a/src/common/bit_cast.h +++ b/src/common/bit_cast.h @@ -3,19 +3,21 @@ #pragma once -#include <cstring> -#include <type_traits> +#include <version> + +#ifdef __cpp_lib_bit_cast +#include <bit> +#endif namespace Common { template <typename To, typename From> -[[nodiscard]] std::enable_if_t<sizeof(To) == sizeof(From) && std::is_trivially_copyable_v<From> && - std::is_trivially_copyable_v<To>, - To> -BitCast(const From& src) noexcept { - To dst; - std::memcpy(&dst, &src, sizeof(To)); - return dst; +constexpr inline To BitCast(const From& from) { +#ifdef __cpp_lib_bit_cast + return std::bit_cast<To>(from); +#else + return __builtin_bit_cast(To, from); +#endif } } // namespace Common |