| 1426 | */ |
| 1427 | template <typename SrcType, typename TargetType> struct constexpr_write_ptr { |
| 1428 | constexpr explicit constexpr_write_ptr(TargetType *raw) : p(raw) {} |
| 1429 | |
| 1430 | constexpr constexpr_write_ptr_proxy<SrcType, TargetType> operator*() const { |
| 1431 | return constexpr_write_ptr_proxy<SrcType, TargetType>{p}; |
nothing calls this directly
no outgoing calls
no test coverage detected