Is this warning anything to worry about? I\'ve read that it can cause erratic behaviour?
It\'s an example I\'m trying to compile, could someone explain to me why the
Although this is considered bad practice, I think there should be no problem mixing class definition and struct declaration, as they are basically the same data type. The main difference is that struct members are by default public, contrary to class members which are private, but otherwise the memory layout is identical.