Error while compiling Dont solve come help
#10

Quote:
Originally Posted by Flake.
Посмотреть сообщение
Код:
enum Info
{
sex, //0= male 1=female
age, // age :3
logged, // If is player connected
}
Should be
Код:
enum Info
{
sex, //0= male 1=female
age, // age :3
logged // remove the last ,
};
";" and "," isn't relevant for enum.

This compile normally
Код:
enum
{
	test,
	test2,
	test3
}

enum
{
	test,
	test2,
	test3,
};
Reply


Messages In This Thread
Error while compiling Dont solve come help - by Dejan12345 - 13.07.2016, 13:53
Re: Error while compiling - by TaiRinsuru - 13.07.2016, 13:54
Re: Error while compiling - by Flake. - 13.07.2016, 13:55
Re: Error while compiling - by Dejan12345 - 13.07.2016, 13:56
Re: Error while compiling - by TaiRinsuru - 13.07.2016, 13:57
Re: Error while compiling - by Dejan12345 - 13.07.2016, 13:58
Re: Error while compiling - by TaiRinsuru - 13.07.2016, 14:01
Re: Error while compiling Dont solve come help - by Dejan12345 - 13.07.2016, 14:03
Re: Error while compiling Dont solve come help - by TaiRinsuru - 13.07.2016, 14:09
Re: Error while compiling - by F1N4L - 13.07.2016, 14:21

Forum Jump:


Users browsing this thread: 1 Guest(s)