From: khizmax Date: Wed, 9 Dec 2015 20:38:51 +0000 (+0300) Subject: Added missing header X-Git-Tag: v2.1.0~38 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d48a9a4751da28daf56f8d862a5293042a3908ff;p=libcds.git Added missing header --- diff --git a/tests/unit/map2/map_type_feldman_hashmap.h b/tests/unit/map2/map_type_feldman_hashmap.h index 0896230c..8deed3b3 100644 --- a/tests/unit/map2/map_type_feldman_hashmap.h +++ b/tests/unit/map2/map_type_feldman_hashmap.h @@ -166,20 +166,6 @@ namespace map2 { std::vector< cds::intrusive::feldman_hashset::level_statistics > level_stat; m.get_level_statistics( level_stat ); CPPUNIT_MSG( level_stat ); - /* - CPPUNIT_MSG( "Level statistics, height=" << level_stat.size()); - size_t i = 0; - CPPUNIT_MSG( " i node_count capacity data_cell array_cell empty_cell" ); - for (auto it = level_stat.begin(); it != level_stat.end(); ++it, ++i) { - CPPUNIT_MSG( std::setw(3) << i << std::setw(0) << " " - << std::setw(12) << it->array_node_count << std::setw(0) << " " - << std::setw(8) << it->node_capacity << std::setw(0) << " " - << std::setw(12) << it->data_cell_count << std::setw(0) << " " - << std::setw(12) << it->array_cell_count << std::setw(0) << " " - << std::setw(12) << it->empty_cell_count << std::setw(0) - ); - } - */ } } // namespace map2 diff --git a/tests/unit/print_feldman_hashset_stat.h b/tests/unit/print_feldman_hashset_stat.h index 142b8ad1..96ac3bb2 100644 --- a/tests/unit/print_feldman_hashset_stat.h +++ b/tests/unit/print_feldman_hashset_stat.h @@ -3,8 +3,9 @@ #ifndef CDSUNIT_PRINT_FELDMAN_HASHSET_STAT_H #define CDSUNIT_PRINT_FELDMAN_HASHSET_STAT_H -#include #include +#include +#include namespace std {