How can I make the compiler create the default constructors in CPP?
- by Itay Moav
Is there a way to make the compiler create the default constructors even if I provide an explicit constructor of my own?
As some times I find them very useful and find it a waste of time to write the copy constructor, especially for large classes.