| 9394 | ~json_ref() = default; |
| 9395 | |
| 9396 | value_type moved_or_copied() const |
| 9397 | { |
| 9398 | if (is_rvalue) |
| 9399 | { |
| 9400 | return std::move(*value_ref); |
| 9401 | } |
| 9402 | return *value_ref; |
| 9403 | } |
| 9404 | |
| 9405 | value_type const& operator*() const |
| 9406 | { |
no outgoing calls
no test coverage detected