| 12562 | ~json_ref() = default; |
| 12563 | |
| 12564 | value_type moved_or_copied() const |
| 12565 | { |
| 12566 | if (is_rvalue) |
| 12567 | { |
| 12568 | return std::move(*value_ref); |
| 12569 | } |
| 12570 | return *value_ref; |
| 12571 | } |
| 12572 | |
| 12573 | value_type const& operator*() const |
| 12574 | { |
no outgoing calls
no test coverage detected