From ecbd3eb83d66d5e911d73733b83579df44bcc84e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 11 Jun 2020 21:00:06 -0400 Subject: [PATCH] CAnimEventLoader: Default destructor Allows the constructor to be considered trivial. --- src/Core/Resource/Factory/CAnimEventLoader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Resource/Factory/CAnimEventLoader.h b/src/Core/Resource/Factory/CAnimEventLoader.h index 0b299bfb..469a83da 100644 --- a/src/Core/Resource/Factory/CAnimEventLoader.h +++ b/src/Core/Resource/Factory/CAnimEventLoader.h @@ -8,9 +8,9 @@ class CAnimEventLoader { TResPtr mpEventData; - EGame mGame; + EGame mGame{}; - CAnimEventLoader() {} + CAnimEventLoader() = default; void LoadEvents(IInputStream& rEVNT); int32 LoadEventBase(IInputStream& rEVNT); void LoadLoopEvent(IInputStream& rEVNT);