If we find a blank constructor or destructor default could be used.
If we find declared but unimplemented copy or assignment operators then = delete could be used (a trick used prior to C++ 11/14). Often made private but public is better now with delete too.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If we find a blank constructor or destructor default could be used.
If we find declared but unimplemented copy or assignment operators then = delete could be used (a trick used prior to C++ 11/14). Often made private but public is better now with delete too.
Thank you for the suggestions! We've created a Ticket.