From 9f63991a0ae45fafb50f49dd40292f3407bf69fe Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 9 Jun 2020 04:19:00 -0400 Subject: [PATCH] CAnimation: Mark BuildDependencyTree() as overwritten Same behavior, but enforces the interface. --- src/Core/Resource/Animation/CAnimation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Resource/Animation/CAnimation.h b/src/Core/Resource/Animation/CAnimation.h index b5f69e33..03f78ffd 100644 --- a/src/Core/Resource/Animation/CAnimation.h +++ b/src/Core/Resource/Animation/CAnimation.h @@ -37,7 +37,7 @@ class CAnimation : public CResource public: CAnimation(CResourceEntry *pEntry = 0); - CDependencyTree* BuildDependencyTree() const; + CDependencyTree* BuildDependencyTree() const override; void EvaluateTransform(float Time, uint32 BoneID, CVector3f *pOutTranslation, CQuaternion *pOutRotation, CVector3f *pOutScale) const; bool HasTranslation(uint32 BoneID) const;