I\'ve a class which stores a reference to its parent, the reference is passed in the constructor. If I try to copy an instance I get an error \"error C2582: \'operator =\' f
You need to implement a copy constructor and initialize the reference in that copy constructor, to point to the same reference as the original object.