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 2022/11/01 22:16:03 UTC

[datasketches-cpp] branch equal_to_instance updated: removed print from test

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

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


The following commit(s) were added to refs/heads/equal_to_instance by this push:
     new d219863  removed print from test
d219863 is described below

commit d219863736c7ad2adca36a7329653daee4c0cf06
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Tue Nov 1 15:15:58 2022 -0700

    removed print from test
---
 fi/test/reverse_purge_hash_map_test.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/fi/test/reverse_purge_hash_map_test.cpp b/fi/test/reverse_purge_hash_map_test.cpp
index a9ae092..146b352 100644
--- a/fi/test/reverse_purge_hash_map_test.cpp
+++ b/fi/test/reverse_purge_hash_map_test.cpp
@@ -19,14 +19,11 @@
 
 #include <catch2/catch.hpp>
 
-#include <iostream>
-
 #include <reverse_purge_hash_map.hpp>
 
 namespace datasketches {
 
 TEST_CASE("reverse purge hash map: empty", "[frequent_items_sketch]") {
-  std::cout << "sizeof(reverse_purge_hash_map<int>)=" << sizeof(reverse_purge_hash_map<int>) << '\n';
   reverse_purge_hash_map<int> map(3, 3, std::equal_to<int>(), std::allocator<int>());
   REQUIRE(map.get_num_active() == 0);
   REQUIRE(map.get_lg_cur_size() == 3);  // static_cast<uint8_t>(3)


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