| 3246 | template<typename PointerType, typename std::enable_if< |
| 3247 | std::is_pointer<PointerType>::value, int>::type = 0> |
| 3248 | auto get() noexcept -> decltype(std::declval<basic_json_t&>().template get_ptr<PointerType>()) |
| 3249 | { |
| 3250 | // delegate the call to get_ptr |
| 3251 | return get_ptr<PointerType>(); |
| 3252 | } |
| 3253 | |
| 3254 | /*! |
| 3255 | @brief get a value (explicit) |
no outgoing calls
no test coverage detected