From 8a030ccb7434ec2492fb81a7f0fb26362a823cce Mon Sep 17 00:00:00 2001 From: Chris Johannsen Date: Mon, 21 Jul 2025 06:34:43 -0500 Subject: [PATCH] Small change to fix live-stats --- src/utils/statistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/statistics.cpp b/src/utils/statistics.cpp index fcc67cbc..66d024fd 100644 --- a/src/utils/statistics.cpp +++ b/src/utils/statistics.cpp @@ -191,7 +191,7 @@ void statistics::values_to_stream(std::ostream& out) const { if (!first) { out << "\t"; } - out << stat.second->get_name(); + out << *stat.second; first = false; } }