Skip to content

Commit

Permalink
Renamed missed renames
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Sep 3, 2024
1 parent ddabca5 commit d285a88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/message/ReactionStatistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ namespace message {
ReactionStatistics::ReactionStatistics(std::shared_ptr<const threading::ReactionIdentifiers> identifiers,
const IDPair& cause,
const IDPair& target,
std::shared_ptr<const util::ThreadPoolDescriptor> target_threadpool,
std::shared_ptr<const util::ThreadPoolDescriptor> target_pool,
std::set<std::shared_ptr<const util::GroupDescriptor>> 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()) {}

Expand Down
4 changes: 2 additions & 2 deletions src/message/ReactionStatistics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace message {
ReactionStatistics(std::shared_ptr<const threading::ReactionIdentifiers> identifiers,
const IDPair& cause,
const IDPair& target,
std::shared_ptr<const util::ThreadPoolDescriptor> target_threadpool,
std::shared_ptr<const util::ThreadPoolDescriptor> target_pool,
std::set<std::shared_ptr<const util::GroupDescriptor>> target_groups);

/// The identifiers for the reaction that was executed
Expand All @@ -91,7 +91,7 @@ namespace message {
IDPair target;

/// The thread pool that this reaction was intended to run on
std::shared_ptr<const util::ThreadPoolDescriptor> target_threadpool;
std::shared_ptr<const util::ThreadPoolDescriptor> target_pool;
/// The groups that this reaction was intended to run in
std::set<std::shared_ptr<const util::GroupDescriptor>> target_groups;

Expand Down

0 comments on commit d285a88

Please sign in to comment.