| 2899 | template<typename ValueType, typename std::enable_if< |
| 2900 | not std::is_pointer<ValueType>::value, int>::type = 0> |
| 2901 | ValueType get() const |
| 2902 | { |
| 2903 | return get_impl(static_cast<ValueType*>(nullptr)); |
| 2904 | } |
| 2905 | |
| 2906 | /*! |
| 2907 | @brief get a pointer value (explicit) |
no outgoing calls
no test coverage detected