From 1b272cba50eef6f505b7b52fc93a5ae12d62b423 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:39:25 -0400 Subject: [PATCH] [Cleanup] Remove unused ctor and use default dtor in xtargetautohaters.h (#3290) * [Cleanup] Remove unused ctor and use default dtor in xtargetautohaters.h # Notes - Utilize default dtor. - Remove unused ctor. * Update zone_event_scheduler.cpp --- zone/xtargetautohaters.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zone/xtargetautohaters.h b/zone/xtargetautohaters.h index fd8ee4f21..73c0fa8d2 100644 --- a/zone/xtargetautohaters.h +++ b/zone/xtargetautohaters.h @@ -15,8 +15,7 @@ struct HatersCount { }; public: XTargetAutoHaters() : m_client(nullptr), m_group(nullptr), m_raid(nullptr) {} - XTargetAutoHaters(Client *co, Group *go, Raid *ro) : m_client(co), m_group(go), m_raid(ro) {} - ~XTargetAutoHaters() {} + ~XTargetAutoHaters() = default; void merge(XTargetAutoHaters &other); void demerge(XTargetAutoHaters &other);