| 22 | typename Histogram::const_reference> { |
| 23 | public: |
| 24 | iterator_over(const Histogram& h, std::size_t idx) : histogram_(h), idx_(idx) {} |
| 25 | |
| 26 | iterator_over(const iterator_over& o) : histogram_(o.histogram_), idx_(o.idx_) {} |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected