Hi
( sorry for my English )
Idea: what you think about - add flag to engine for disable operator copy for script classes and classes registred as AS_REF ?
I know, version 3 as use only referens - but, we need is this time.
Code
class MyClass
{}
void F()
{
// 1 - Ok!
MyClass @a = MyClass();
MyClass @b = a;
// 2 - Hard
MyClass c;
MyClass d = c;
// 3 - Very hard
MyClass @e = MyClass();
MyClass f = e; // do make me cry sometimes
}
if it possible, make possible disable 2 and 3 variant...






