
I’m getting these 2 errors whilst archiving the project.
- Macro name is missing
- Macro names must be identifiers
Any ideas what’s going on?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What it says on the tin.
The first is
#define, if you have this on its own, what is it defining? You need an identifier/name after the#define, such as#define VARIABLE.The second does provide some sort of name, but it’s simply a number. Identifiers cannot start with a number (just like variable names can’t). and hence isn’t classed as an identifier.