| 91 | typedef typename Container::const_iterator const_iterator; |
| 92 | const_iterator begin() const { return Base::container().begin(); } |
| 93 | const_iterator cbegin() const { return Base::container().cbegin(); } |
| 94 | const_iterator end() const { return Base::container().end(); } |
| 95 | const_iterator cend() const { return Base::container().cend(); } |
| 96 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected