CSkeleton: Remove default constructor from SBoneTransformInfo
This is unnecessary given initializers are already provided. This also makes the struct constexpr capable by default as well.
This commit is contained in:
parent
60d003df88
commit
84e0d177d8
|
@ -19,8 +19,6 @@ struct SBoneTransformInfo
|
|||
CVector3f Position{CVector3f::Zero()};
|
||||
CQuaternion Rotation{CQuaternion::Identity()};
|
||||
CVector3f Scale{CVector3f::One()};
|
||||
|
||||
SBoneTransformInfo() = default;
|
||||
};
|
||||
|
||||
class CSkeleton : public CResource
|
||||
|
|
Loading…
Reference in New Issue