Add one more missing move
parent
8da3d277c7
commit
02378b5e70
|
@ -119,7 +119,7 @@ public: // functions to add properties or children
|
||||||
) {
|
) {
|
||||||
FBX::Node c(name);
|
FBX::Node c(name);
|
||||||
c.AddProperties(std::forward<More>(more)...);
|
c.AddProperties(std::forward<More>(more)...);
|
||||||
children.push_back(c);
|
children.push_back(std::move(c));
|
||||||
}
|
}
|
||||||
|
|
||||||
public: // support specifically for dealing with Properties70 nodes
|
public: // support specifically for dealing with Properties70 nodes
|
||||||
|
|
Loading…
Reference in New Issue