Skip to content

intel/elk: delete copy constructor and copy-assignment-operator

Dylan Baker requested to merge dbaker/mesa:submit/elk-rule-of-three into main

What does this MR do and why?

intel/elk: delete copy constructor and copy-assignment-operator

To keep the rule-of-three. This points out that the implicit copy
operations would be dangerous when there is an explicit constructor and
destructor, since the class is holding un-managed memory.

Merge request reports