X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=cds%2Fcontainer%2Fsplit_list_set.h;h=5d91110998d85071832b24662d5a659a3374662c;hp=e272e8e3e7a7b28e12b246041468fafb1de3734d;hb=3e8abcbbbbb3809e809bec65a8a4d83cba8c4927;hpb=2ecb5437f12edd8843990efcf0df132836e7d1f4 diff --git a/cds/container/split_list_set.h b/cds/container/split_list_set.h index e272e8e3..5d911109 100644 --- a/cds/container/split_list_set.h +++ b/cds/container/split_list_set.h @@ -150,6 +150,7 @@ namespace cds { namespace container { /// Hash functor for \p %value_type and all its derivatives that you use typedef typename base_class::hash hash; typedef typename base_class::item_counter item_counter; ///< Item counter type + typedef typename base_class::stat stat; ///< Internal statistics protected: //@cond @@ -723,6 +724,12 @@ namespace cds { namespace container { return base_class::size(); } + /// Returns internal statistics + stat const& statistics() const + { + return base_class::statistics(); + } + protected: //@cond using base_class::extract_;