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:
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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user