Add one more missing move

pull/4785/head
Aaron Gokaslan 2022-11-03 12:36:58 -04:00
parent 8da3d277c7
commit 02378b5e70
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public: // functions to add properties or children
) {
FBX::Node c(name);
c.AddProperties(std::forward<More>(more)...);
children.push_back(c);
children.push_back(std::move(c));
}
public: // support specifically for dealing with Properties70 nodes