auto_array(auto_array<T> & value)
		: ptr(value.ptr), count(value.count)
	{
		value.release();
	}
Beispiel #2
0
 auto_array(auto_array& other) : ptr_(other.release()) {}