Add virtual destructor to CAnimationManager

This commit is contained in:
James Ramsey 2025-01-18 10:15:45 -05:00
parent 72dfbf5296
commit 6117f1be13

View file

@ -29,7 +29,9 @@ namespace Hyprutils {
const std::unordered_map<std::string, Memory::CSharedPointer<CBezierCurve>>& getAllBeziers();
std::vector<Memory::CWeakPointer<CBaseAnimatedVariable>> m_vActiveAnimatedVariables;
virtual ~CAnimationManager() {};
std::vector<Memory::CWeakPointer<CBaseAnimatedVariable>> m_vActiveAnimatedVariables;
private:
std::unordered_map<std::string, Memory::CSharedPointer<CBezierCurve>> m_mBezierCurves;