| 14724 | ~json_ref() = default; |
| 14725 | |
| 14726 | value_type moved_or_copied() const |
| 14727 | { |
| 14728 | if (value_ref == nullptr) |
| 14729 | { |
| 14730 | return std::move(owned_value); |
| 14731 | } |
| 14732 | return *value_ref; |
| 14733 | } |
| 14734 | |
| 14735 | value_type const& operator*() const |
| 14736 | { |
no outgoing calls
no test coverage detected