We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am using Keil version 5.0, and want to embed unreferenced text in a source file e.g.
static code char desc[] ="Version 1.20";
The only way I could get rid of the message is to add the following somewhere in the code.
char *dummy = desc;
This is not a problem with latest version of the compiler.