| 89 | |
| 90 | template <typename T> |
| 91 | inline std::enable_if_t<std::is_trivially_copyable_v<T>, void> SafeStore(void* unaligned, |
| 92 | T value) { |
| 93 | std::memcpy(unaligned, &value, sizeof(T)); |
| 94 | } |
| 95 | |
| 96 | } // namespace util |
| 97 | } // namespace arrow |
no outgoing calls
no test coverage detected