| 15573 | template<typename ReferenceType, typename std::enable_if< |
| 15574 | std::is_reference<ReferenceType>::value, int>::type = 0> |
| 15575 | ReferenceType get_ref() |
| 15576 | { |
| 15577 | // delegate call to get_ref_impl |
| 15578 | return get_ref_impl<ReferenceType>(*this); |
| 15579 | } |
| 15580 | |
| 15581 | /*! |
| 15582 | @brief get a reference value (implicit) |
nothing calls this directly
no outgoing calls
no test coverage detected