I'm updating a VS2010 C++ application to VS2012 and I'm getting the error
cannot access private member declared in class 'CObject'
This appears to be due to the complier generated function
CObArray::CObArray(const CObArray &)
.
Is there a way I can disable the compile generated functions? Or a way of knowing why it's creating the functions?