From 3ac722b3a7699f1059985e5912142760f773f6b6 Mon Sep 17 00:00:00 2001 From: khizmax Date: Fri, 28 Oct 2016 19:51:11 +0300 Subject: [PATCH] Fixed bug in list_statistics() --- cds/container/split_list_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cds/container/split_list_set.h b/cds/container/split_list_set.h index febcf447..ba335893 100644 --- a/cds/container/split_list_set.h +++ b/cds/container/split_list_set.h @@ -892,7 +892,7 @@ namespace cds { namespace container { /// Returns internal statistics for \p ordered_list typename ordered_list::stat const& list_statistics() const { - return m_List.statistics(); + return base_class::statistics(); } protected: -- 2.34.1