From d285a88e90fae109a3b10307d004a5ad033af966 Mon Sep 17 00:00:00 2001 From: Trent Houliston Date: Tue, 3 Sep 2024 14:53:34 +1000 Subject: [PATCH] Renamed missed renames --- src/message/ReactionStatistics.cpp | 4 ++-- src/message/ReactionStatistics.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/message/ReactionStatistics.cpp b/src/message/ReactionStatistics.cpp index b49ed48b..f3121d56 100644 --- a/src/message/ReactionStatistics.cpp +++ b/src/message/ReactionStatistics.cpp @@ -44,12 +44,12 @@ namespace message { ReactionStatistics::ReactionStatistics(std::shared_ptr identifiers, const IDPair& cause, const IDPair& target, - std::shared_ptr target_threadpool, + std::shared_ptr target_pool, std::set> target_groups) : identifiers(std::move(identifiers)) , cause(cause) , target(target) - , target_threadpool(std::move(target_threadpool)) + , target_pool(std::move(target_pool)) , target_groups(std::move(target_groups)) , created(Event::now()) {} diff --git a/src/message/ReactionStatistics.hpp b/src/message/ReactionStatistics.hpp index 2b7e7e40..0d00f2b0 100644 --- a/src/message/ReactionStatistics.hpp +++ b/src/message/ReactionStatistics.hpp @@ -79,7 +79,7 @@ namespace message { ReactionStatistics(std::shared_ptr identifiers, const IDPair& cause, const IDPair& target, - std::shared_ptr target_threadpool, + std::shared_ptr target_pool, std::set> target_groups); /// The identifiers for the reaction that was executed @@ -91,7 +91,7 @@ namespace message { IDPair target; /// The thread pool that this reaction was intended to run on - std::shared_ptr target_threadpool; + std::shared_ptr target_pool; /// The groups that this reaction was intended to run in std::set> target_groups;