You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/01/07 19:12:44 UTC

[incubator-datasketches-cpp] branch master updated: small fix in debug print

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5f1e947  small fix in debug print
5f1e947 is described below

commit 5f1e947275602604a8dddcc2509cd8d302d27ae8
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Tue Jan 7 11:12:35 2020 -0800

    small fix in debug print
---
 hll/include/HllSketch-internal.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hll/include/HllSketch-internal.hpp b/hll/include/HllSketch-internal.hpp
index f11d7a3..5b86848 100644
--- a/hll/include/HllSketch-internal.hpp
+++ b/hll/include/HllSketch-internal.hpp
@@ -310,7 +310,7 @@ std::ostream& hll_sketch_alloc<A>::to_string(std::ostream& os,
             os << auxItr->getString() << std::endl;
           }
         } else {
-          while (auxItr->nextAll()) {
+          while (auxItr->nextValid()) {
             os << auxItr->getString() << std::endl;
           }
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org