C_auto_ptr | ( | MyType && | rrRight | ) |
A move constructor for the C_auto_ptr classes. The standard copy constructor is disallowed for the class (see std::unique_ptr::constructors).
rrRight | is an rvalue reference to the C_auto_ptr instance of the same template instantiation. The contents of the parameter object is moved into the constructed one. |