add SplitListMap print stat
[libcds.git] / tests / unit / map2 / map_types.h
index 3c7c7e0657fabfbb5af2de7b276a0c6b7ca5a728..c4cf5b2ee0d436ff0f8c8806c932d6327d63e166 100644 (file)
@@ -59,6 +59,7 @@
 #include "map2/std_hash_map.h"
 #include "michael_alloc.h"
 #include "print_cuckoo_stat.h"
+#include "print_split_list_stat.h"
 #include "print_skip_list_stat.h"
 #include "print_ellenbintree_stat.h"
 #include "ellen_bintree_update_desc_pool.h"
@@ -2405,6 +2406,12 @@ namespace map2 {
         CPPUNIT_MSG( m.statistics() );
     }
 
+    template <typename GC, typename K, typename T, typename Traits >
+    static inline void print_stat( cc::SplitListMap< GC, K, T, Traits > const& m )
+    {
+        CPPUNIT_MSG( m.statistics() );
+    }
+
     // EllenBinTreeMap
     template <typename GC, typename Key, typename T, typename Traits>
     static inline void print_stat( cc::EllenBinTreeMap<GC, Key, T, Traits> const& s )