diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-04-29 12:11:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 12:11:27 +0200 |
commit | aac354709d4e60cf9f1b1f49c297c1787193e23f (patch) | |
tree | c999fd674266f2c76f7a79df6cbfd3e664aa4ced /modules/fbx/fbx_parser/FBXAnimation.cpp | |
parent | c11502711ec6f918a4352d8650e46b34a295081e (diff) | |
parent | 5b1602084610790d095e53dbce4fb2e5034fc96a (diff) |
Merge pull request #48292 from akien-mga/stay-modern
Replace remaining uses of `NULL` with `nullptr`
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 1690df6943..0fbff035fd 100644 --- a/modules/fbx/fbx_parser/FBXAnimation.cpp +++ b/modules/fbx/fbx_parser/FBXAnimation.cpp @@ -128,7 +128,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*/, + const Document &doc, const char *const *target_prop_whitelist /*= nullptr*/, size_t whitelist_size /*= 0*/) : Object(id, element, name), target(), doc(doc) { // find target node |