This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch theta_compression
in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git


The following commit(s) were added to refs/heads/theta_compression by this push:
     new 895586a  fixed iterator
895586a is described below

commit 895586a62a06c1f9f0e0142a69d6c4d084751170
Author: AlexanderSaydakov <[email protected]>
AuthorDate: Mon Jan 9 18:08:38 2023 -0800

    fixed iterator
---
 theta/include/theta_sketch.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/theta/include/theta_sketch.hpp b/theta/include/theta_sketch.hpp
index e638f93..10133b6 100644
--- a/theta/include/theta_sketch.hpp
+++ b/theta/include/theta_sketch.hpp
@@ -451,7 +451,7 @@ private:
 };
 
 template<typename Allocator>
-class wrapped_compact_theta_sketch_alloc<Allocator>::const_iterator: 
std::iterator<std::input_iterator_tag, uint64_t> {
+class wrapped_compact_theta_sketch_alloc<Allocator>::const_iterator: public 
std::iterator<std::input_iterator_tag, uint64_t> {
 public:
   const_iterator(const void* ptr, uint8_t entry_bits, uint32_t num_entries, 
uint32_t index);
   const_iterator& operator++();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to