From 90c87a05e622cece6aad198707f005f35561ce19 Mon Sep 17 00:00:00 2001 From: Uleat Date: Thu, 24 Mar 2016 19:23:12 -0400 Subject: [PATCH] Fix for implementation reference failure --- zone/heal_rotation.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zone/heal_rotation.h b/zone/heal_rotation.h index cfe0b0d5d..54b089ed3 100644 --- a/zone/heal_rotation.h +++ b/zone/heal_rotation.h @@ -47,6 +47,7 @@ class HealRotation { public: HealRotation(Bot* hr_creator, uint32 interval_ms = CASTING_CYCLE_DEFAULT_INTERVAL, bool fast_heals = false, bool adaptive_targeting = false, bool casting_override = false); + HealRotation(HealRotation* allocator_shunt) {}; void SetIntervalMS(uint32 interval_ms); void SetIntervalS(uint32 interval_s); @@ -140,9 +141,6 @@ private: float m_safe_hp_ratio[ARMOR_TYPE_COUNT]; float m_critical_hp_ratio[ARMOR_TYPE_COUNT]; - - friend class std::_Ref_count_obj; - HealRotation(HealRotation* allocator_shunt) {}; }; #endif