Fixed bug in list_statistics()
authorkhizmax <libcds.dev@gmail.com>
Fri, 28 Oct 2016 16:51:11 +0000 (19:51 +0300)
committerkhizmax <libcds.dev@gmail.com>
Fri, 28 Oct 2016 16:51:11 +0000 (19:51 +0300)
cds/container/split_list_set.h

index febcf44777aaac6d388fde19451b193c745c6550..ba3358939dc52fbcb3b28362d28d5a071e2df6f3 100644 (file)
@@ -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: