3 errors when compiling
#5

The above replies should have fixed the defines, but the "error 001: expected token: "-string end-", but found "-identifier-" issue is usually caused by a string(Which for some reason the compiler doesn't recognize) such as:
string = (blah == blah) ? "blahblah" : "blahblahblah";

Simply enclose the quotes with brackets to make it look like and the compiler should recognize a proper string end:
string = (blah == blah) ? ("blahblah") : ("blah");

And it should compile properly

EDIT: Ignore this. I missed the bottom part of your post and noticed this isn't the issue you're having. My bad.
Reply


Messages In This Thread
3 errors when compiling - by jremi - 29.10.2013, 14:30
Re: 3 errors when compiling - by Patrick - 29.10.2013, 14:32
Re: 3 errors when compiling - by SAMProductions - 29.10.2013, 14:41
Re: 3 errors when compiling - by Josh Greening - 30.10.2013, 02:18
Re: 3 errors when compiling - by Josh Greening - 30.10.2013, 02:36
Re: 3 errors when compiling - by JayZ243 - 30.10.2013, 10:18
Re: 3 errors when compiling - by RayDcosta - 30.10.2013, 10:32
Re: 3 errors when compiling - by jremi - 30.10.2013, 10:54

Forum Jump:


Users browsing this thread: 1 Guest(s)