You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MAYA-6512: MFnDependencyNode, MFnDagNode copy constructor should be public, not private
Workaround: Create a new functionset which operates on the same object, for example: MFnDependencyNode fn2(fn1.object()); If you want to pass a functionset to another method, pass a reference instead.
Additionally, I found that vector<FnBlah> had to become vector<FnBlah*>.
The text was updated successfully, but these errors were encountered:
rhaleblian
changed the title
??? does not build for 2013 and later: API change makes copy constructor private
48b292037b850d326332b47d084f611236cb51c1 does not build for 2013 and later: Autodesk API change made some copy constructors private
Sep 2, 2014
neomonkeus
changed the title
48b292037b850d326332b47d084f611236cb51c1 does not build for 2013 and later: Autodesk API change made some copy constructors private
Incompatiable API change : Access modifier change - Copy constructors private
Sep 2, 2014
49a3e4c gets us building again and may not have broken anything... it builds against 2012, so it could be back-compatible, but I can't test it. Frankly it's under-tested in 2015 too.
rhaleblian
changed the title
Incompatiable API change : Access modifier change - Copy constructors private
Incompatible API change : Access modifier change - Copy constructors private
Sep 2, 2014
MAYA-6512: MFnDependencyNode, MFnDagNode copy constructor should be public, not private
Workaround: Create a new functionset which operates on the same object, for example: MFnDependencyNode fn2(fn1.object()); If you want to pass a functionset to another method, pass a reference instead.
Additionally, I found that
vector<FnBlah>
had to becomevector<FnBlah*>
.The text was updated successfully, but these errors were encountered: