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/datasketches-cpp.git

commit 99da504073923908e7c0d0976ccf2d5945cbf4da
Merge: 46c5f79 5fd4611
Author: Alexander Saydakov <[email protected]>
AuthorDate: Mon Apr 19 15:50:58 2021 -0700

    Merge pull request #209 from apache/cleanup_warnings
    
    Cleanup warnings

 common/include/MurmurHash3.h                       |  12 +-
 common/include/binomial_bounds.hpp                 |  16 +-
 common/include/bounds_binomial_proportions.hpp     |  27 +-
 common/include/count_zeros.hpp                     |   4 +-
 common/include/serde.hpp                           |  14 +-
 cpc/include/cpc_compressor.hpp                     |  38 +-
 cpc/include/cpc_compressor_impl.hpp                | 180 +++++-----
 cpc/include/cpc_sketch.hpp                         |   2 +-
 cpc/include/cpc_sketch_impl.hpp                    |  38 +-
 cpc/include/cpc_union_impl.hpp                     |  28 +-
 cpc/include/cpc_util.hpp                           |  20 +-
 cpc/include/icon_estimator.hpp                     |   8 +-
 cpc/include/u32_table.hpp                          |  16 +-
 cpc/include/u32_table_impl.hpp                     |  28 +-
 cpc/test/compression_test.cpp                      |  20 +-
 cpc/test/cpc_sketch_test.cpp                       |  20 ++
 cpc/test/cpc_union_test.cpp                        |   2 +-
 fi/include/frequent_items_sketch_impl.hpp          |  38 +-
 fi/include/reverse_purge_hash_map_impl.hpp         |  20 +-
 fi/test/reverse_purge_hash_map_test.cpp            |   4 +-
 hll/include/AuxHashMap-internal.hpp                | 117 ++++---
 hll/include/AuxHashMap.hpp                         |  38 +-
 .../CompositeInterpolationXTable-internal.hpp      |  30 +-
 hll/include/CompositeInterpolationXTable.hpp       |   6 +-
 hll/include/CouponHashSet-internal.hpp             | 146 ++++----
 hll/include/CouponHashSet.hpp                      |  12 +-
 hll/include/CouponList-internal.hpp                | 199 ++++++-----
 hll/include/CouponList.hpp                         |  26 +-
 hll/include/CubicInterpolation-internal.hpp        |   6 +-
 hll/include/HarmonicNumbers-internal.hpp           |   2 +-
 hll/include/Hll4Array-internal.hpp                 | 156 +++++----
 hll/include/Hll4Array.hpp                          |  18 +-
 hll/include/Hll6Array-internal.hpp                 |  52 +--
 hll/include/Hll6Array.hpp                          |  12 +-
 hll/include/Hll8Array-internal.hpp                 |  66 ++--
 hll/include/Hll8Array.hpp                          |  12 +-
 hll/include/HllArray-internal.hpp                  | 384 ++++++++++-----------
 hll/include/HllArray.hpp                           |  72 ++--
 hll/include/HllSketch-internal.hpp                 |  56 +--
 hll/include/HllSketchImpl-internal.hpp             |  44 +--
 hll/include/HllSketchImpl.hpp                      |  26 +-
 hll/include/HllSketchImplFactory.hpp               |  30 +-
 hll/include/HllUnion-internal.hpp                  | 122 +++----
 hll/include/HllUtil.hpp                            | 247 +++++++------
 hll/include/coupon_iterator-internal.hpp           |  18 +-
 hll/include/coupon_iterator.hpp                    |  10 +-
 hll/include/hll.hpp                                |  42 +--
 hll/test/AuxHashMapTest.cpp                        |   2 +-
 hll/test/CouponHashSetTest.cpp                     |  68 ++--
 hll/test/CouponListTest.cpp                        |  50 +--
 hll/test/CrossCountingTest.cpp                     |   4 +-
 hll/test/HllArrayTest.cpp                          |  70 ++--
 hll/test/HllSketchTest.cpp                         |  30 +-
 hll/test/HllUnionTest.cpp                          |  24 +-
 hll/test/IsomorphicTest.cpp                        |   6 +-
 hll/test/ToFromByteArrayTest.cpp                   |   8 +-
 kll/include/kll_helper.hpp                         |   9 +-
 kll/include/kll_helper_impl.hpp                    |  12 +-
 kll/include/kll_quantile_calculator.hpp            |   2 +-
 kll/include/kll_quantile_calculator_impl.hpp       |  10 +-
 kll/include/kll_sketch.hpp                         |   2 +-
 kll/include/kll_sketch_impl.hpp                    |   6 +-
 kll/test/kll_sketch_test.cpp                       |  83 +++--
 python/src/hll_wrapper.cpp                         |   8 +-
 python/tests/hll_test.py                           |   2 +-
 python/tests/vo_test.py                            |   6 +-
 req/include/req_common.hpp                         |   3 +-
 req/include/req_compactor.hpp                      |   8 +-
 req/include/req_compactor_impl.hpp                 |  52 +--
 req/include/req_sketch.hpp                         |   2 +-
 req/include/req_sketch_impl.hpp                    |  18 +-
 req/test/req_sketch_test.cpp                       | 104 +++---
 sampling/include/var_opt_sketch_impl.hpp           |   4 +-
 sampling/include/var_opt_union_impl.hpp            |   4 +-
 sampling/test/var_opt_sketch_test.cpp              |  12 +-
 sampling/test/var_opt_union_test.cpp               |  24 +-
 theta/include/bounds_on_ratios_in_sampled_sets.hpp |   2 +-
 theta/include/theta_jaccard_similarity_base.hpp    |   6 +-
 theta/include/theta_sketch_impl.hpp                |  14 +-
 theta/include/theta_update_sketch_base_impl.hpp    |  22 +-
 theta/test/theta_a_not_b_test.cpp                  |   2 +-
 theta/test/theta_intersection_test.cpp             |   2 +-
 theta/test/theta_jaccard_similarity_test.cpp       |   4 +-
 theta/test/theta_sketch_test.cpp                   |   2 +-
 theta/test/theta_union_test.cpp                    |   2 +-
 tuple/include/array_of_doubles_sketch_impl.hpp     |   4 +-
 tuple/include/tuple_sketch_impl.hpp                |  14 +-
 tuple/test/array_of_doubles_sketch_test.cpp        |   2 +-
 tuple/test/tuple_a_not_b_test.cpp                  |  34 +-
 tuple/test/tuple_intersection_test.cpp             |  24 +-
 tuple/test/tuple_jaccard_similarity_test.cpp       |  10 +-
 tuple/test/tuple_sketch_allocation_test.cpp        |   2 +-
 tuple/test/tuple_sketch_test.cpp                   |  40 +--
 tuple/test/tuple_union_test.cpp                    |  24 +-
 94 files changed, 1666 insertions(+), 1661 deletions(-)

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

Reply via email to