Why do I get the "multiple types in one declaration"
error when I compile my C++ program?
You probably have code that's the equivalent of
int float x;
probably
class Foo { } float x;
or in it's more common form (note the missing semicolon after closing curly bracket)
class Foo { // } float x;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With