| 19564 | template<typename PointerType, typename std::enable_if< |
| 19565 | std::is_pointer<PointerType>::value, int>::type = 0> |
| 19566 | auto get_ptr() noexcept -> decltype(std::declval<basic_json_t&>().get_impl_ptr(std::declval<PointerType>())) |
| 19567 | { |
| 19568 | // delegate the call to get_impl_ptr<>() |
| 19569 | return get_impl_ptr(static_cast<PointerType>(nullptr)); |
| 19570 | } |
| 19571 | |
| 19572 | /*! |
| 19573 | @brief get a pointer value (implicit) |
nothing calls this directly
no test coverage detected