| 31 | |
| 32 | template<class T> |
| 33 | value |
| 34 | value_ref::from_rvalue(void* p, storage_ptr sp) |
| 35 | { |
| 36 | return value_from( std::move(*reinterpret_cast<T*>(p)), std::move(sp) ); |
| 37 | } |
| 38 | |
| 39 | } // namespace json |
| 40 | } // namespace boost |
nothing calls this directly
no test coverage detected