Cleanup: forbid implicit copy and move for multi function

This avoids accidental copies/moves which are never really intentional.

Pull Request: https://projects.blender.org/blender/blender/pulls/110168
This commit is contained in:
Iliya Katueshenock
2023-08-31 16:01:29 +02:00
committed by Jacques Lucke
parent d3eb85294f
commit e951924b33
@@ -39,7 +39,7 @@
namespace blender::fn::multi_function {
class MultiFunction {
class MultiFunction : NonCopyable, NonMovable {
private:
const Signature *signature_ref_ = nullptr;