From 50e0e1555fb0bc2e1680dee2afb25ef5f15faf9a Mon Sep 17 00:00:00 2001
From: Florian Fischer <florian.fischer@muhq.space>
Date: Fri, 8 Oct 2021 14:39:20 +0200
Subject: [PATCH] [sleep_strategy/Stats] remove old obsolete stats member

Before 713c0f047d25be1c1f5ccf7eaf3c18a0af6918d2 emper::sleep_strategy::Stats
had the actual stats member but with 713c0f047d25be1c1f5ccf7eaf3c18a0af6918d2
WorkerStats are introduced which have the actual stats member but I
apparently forgot to remove the old now obsolete members.

Thanks clang for detecting this!
---
 emper/sleep_strategy/Stats.hpp | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/emper/sleep_strategy/Stats.hpp b/emper/sleep_strategy/Stats.hpp
index e96393fc..c4af3d6e 100644
--- a/emper/sleep_strategy/Stats.hpp
+++ b/emper/sleep_strategy/Stats.hpp
@@ -34,15 +34,6 @@ namespace emper::sleep_strategy {
 class Stats;
 
 class Stats {
-	friend class PipeSleepStrategy;
-
-	size_t onNewWork = 0;
-	size_t notify = 0;
-	size_t notifications = 0;
-	size_t skip = 0;
-	size_t wakeup = 0;
-	size_t wakeupDueToNotify = 0;
-
 	WorkerStats anywhereStats;
 	std::mutex anywhereStatsMutex;
 
-- 
GitLab