| 346 | } |
| 347 | |
| 348 | double const * double_ptr() const noexcept |
| 349 | { |
| 350 | double const * retval = reinterpret_cast<double const *>( |
| 351 | storage_.local_.bytes_.data() + 7); |
| 352 | assert(std::uintptr_t(retval) % alignof(double) == 0); |
| 353 | return retval; |
| 354 | } |
| 355 | double * double_ptr() noexcept |
| 356 | { |
| 357 | double * retval = |
no test coverage detected