bit 228 B

1234567891011121314
  1. #ifndef __GBLIBCPP_BIT__
  2. #define __GBLIBCPP_BIT__
  3. namespace std {
  4. template <typename To, typename From>
  5. constexpr To bit_cast(const From& from) noexcept
  6. {
  7. return __builtin_bit_cast(To, from);
  8. }
  9. } // namespace std
  10. #endif