Skip to content

Fix warnings for wrapper using implicit ccons.

David Gobbi requested to merge dgobbi/vtk:delete-ccons-for-wrapping into master

Two helper classes for vtkAbstractTransform defined a destructor but not a copy constructor or assignment operator. Since latter two are not needed, they should be deleted. The python wrappers were automatically wrapping the copy constructor, which caused a clang compiler warning.

Merge request reports