| 135 | |
| 136 | template <class _T> |
| 137 | auto __as() noexcept -> _T& |
| 138 | { |
| 139 | static_assert(alignof(_T) <= _Align); |
| 140 | return *reinterpret_cast<_T*>(__data_); |
| 141 | } |
| 142 | |
| 143 | auto __as_ptr() noexcept -> void* |
| 144 | { |
nothing calls this directly
no outgoing calls
no test coverage detected