| 19659 | template<typename ReferenceType, typename std::enable_if< |
| 19660 | std::is_reference<ReferenceType>::value, int>::type = 0> |
| 19661 | ReferenceType get_ref() |
| 19662 | { |
| 19663 | // delegate call to get_ref_impl |
| 19664 | return get_ref_impl<ReferenceType>(*this); |
| 19665 | } |
| 19666 | |
| 19667 | /*! |
| 19668 | @brief get a reference value (implicit) |
nothing calls this directly
no outgoing calls
no test coverage detected