warning in Eclipse
- by lego69
hello, I have some problems with Eclipse, I have structure
struct Account{
const char* strLastName; //Client's last name
const char* strFirstName; //Client's first name
int nID; //Client's ID number
int nLines; //Number of lines related to account
double lastBill; //Client's last bill for all lines
List linesDataBase;
};
And I can't compile my code eclipse gives me an errors:
Syntax error before List
no semicolon at end of struct or union
ISO does not allow extra ";" outside a function
I have no idea how to change it, thanks in advance for any help