diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-04-05 13:36:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-04-05 13:37:27 +0200 |
commit | 65a288805726b219cb8f524db0c87fa58332a267 (patch) | |
tree | 6e3ac04085f3c10f39822be3b56f90426c6b4a4c /modules/fbx/fbx_parser/FBXAnimation.cpp | |
parent | 0f0c0e593303f04e3748a6038d3c502106f5face (diff) | |
download | redot-engine-65a288805726b219cb8f524db0c87fa58332a267.tar.gz |
Style: Apply clang-tidy's `modernize-use-default-member-init`
Diffstat (limited to 'modules/fbx/fbx_parser/FBXAnimation.cpp')
-rw-r--r-- | modules/fbx/fbx_parser/FBXAnimation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fbx/fbx_parser/FBXAnimation.cpp b/modules/fbx/fbx_parser/FBXAnimation.cpp index b11e2c7f55..4ab5edebb1 100644 --- a/modules/fbx/fbx_parser/FBXAnimation.cpp +++ b/modules/fbx/fbx_parser/FBXAnimation.cpp @@ -130,7 +130,7 @@ AnimationCurve::~AnimationCurve() { AnimationCurveNode::AnimationCurveNode(uint64_t id, const ElementPtr element, const std::string &name, const Document &doc, const char *const *target_prop_whitelist /*= NULL*/, size_t whitelist_size /*= 0*/) : - Object(id, element, name), target(), doc(doc) { + Object(id, element, name), doc(doc) { const ScopePtr sc = GetRequiredScope(element); // find target node |