| 12637 | ~json_ref() = default; |
| 12638 | |
| 12639 | value_type moved_or_copied() const |
| 12640 | { |
| 12641 | if (is_rvalue) |
| 12642 | { |
| 12643 | return std::move(*value_ref); |
| 12644 | } |
| 12645 | return *value_ref; |
| 12646 | } |
| 12647 | |
| 12648 | value_type const& operator*() const |
| 12649 | { |
no outgoing calls
no test coverage detected