Hi again
I have the C++ compiler enable with CW5.1 for my project and it seems to
generate alot of typing errors. Most I can handle with explicitly typing
the variables in question but... It even gives me errors when using
functions like StrVPrintF. Is there a way to suppress these errors for
change them to just warnings. I can't seem to find a project setting that
will allow me compile my project.
Thanks
Dave
Code example:
char MyString[20];
int MyInteger;
MyInteger = 10;
StrVPrintF(MyString,"%i",MyInteger); // This line works using C but
generates typing errors using C++