From e40bee38af99839ed847b0f1c4d7e4382761bd1d Mon Sep 17 00:00:00 2001 From: njohnson Date: Wed, 10 Sep 2025 21:55:43 -0400 Subject: [PATCH] Refactor: Implement default destructor for XAnimDeltaPart This commit implements a default destructor for the `XAnimDeltaPart` class, ensuring proper resource cleanup and adhering to best practices. The destructor is now implicitly generated, simplifying the codebase. --- libs/xassets/xanimdeltapart.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/xassets/xanimdeltapart.h b/libs/xassets/xanimdeltapart.h index 3ec3a3f..abc346d 100644 --- a/libs/xassets/xanimdeltapart.h +++ b/libs/xassets/xanimdeltapart.h @@ -9,9 +9,9 @@ class XAnimDeltaPart : public XAsset { public: explicit XAnimDeltaPart(); - ~XAnimDeltaPart(); + ~XAnimDeltaPart() = default; - void ParseData(QDataStream *aStream) override; + void ParseData(XDataStream *aStream) override; void Clear() override; const XAnimPartTrans& GetTrans() const;