File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -319,18 +319,17 @@ class tdigest<T, A>::const_iterator {
319319 using pointer = const return_value_holder<value_type>;
320320 using reference = const value_type;
321321
322- const_iterator (const tdigest<T, A> &tdigest_, bool is_end);
323-
324322 const_iterator& operator ++();
325323 const_iterator& operator ++(int );
326324 bool operator ==(const const_iterator& other) const ;
327325 bool operator !=(const const_iterator& other) const ;
328326 reference operator *() const ;
329327 pointer operator ->() const ;
330328private:
331- friend class tdigest <T, A> ;
329+ friend class tdigest ;
332330 uint32_t index_;
333331 vector_centroid centroids_;
332+ const_iterator (const tdigest& tdigest_, bool is_end);
334333};
335334} /* namespace datasketches */
336335
You can’t perform that action at this time.
0 commit comments