| 632 | typedef typename rm_ptr<T>::type& ref_t; |
| 633 | typedef const typename rm_ptr<T>::type& const_ref_t; |
| 634 | ref_t operator*() { return *_val; } |
| 635 | const_ref_t operator*() const { return *_val; } |
| 636 | ref_t operator[](size_t idx) { return _val[idx]; } |
| 637 |
nothing calls this directly
no outgoing calls
no test coverage detected