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 2019/07/30 21:57:46 UTC

[incubator-datasketches-cpp] branch hll_cleanup updated: mistake fixed

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

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


The following commit(s) were added to refs/heads/hll_cleanup by this push:
     new 280d297  mistake fixed
280d297 is described below

commit 280d2971b2cd6c747494db3a0e534fc0ecb8e0cb
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Tue Jul 30 14:57:38 2019 -0700

    mistake fixed
---
 hll/include/HllUnion-internal.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hll/include/HllUnion-internal.hpp b/hll/include/HllUnion-internal.hpp
index 670fdfa..43ec6e0 100644
--- a/hll/include/HllUnion-internal.hpp
+++ b/hll/include/HllUnion-internal.hpp
@@ -72,7 +72,7 @@ static std::ostream& operator<<(std::ostream& os, const HllUnion<A>& hllUnion) {
 
 template<typename A>
 HllSketch<A> HllUnion<A>::getResult(TgtHllType tgtHllType) const {
-  return hll_sketch(gadget, tgtHllType);
+  return HllSketch<A>(gadget, tgtHllType);
 }
 
 template<typename A>


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