Advertisement

help with errors

Started by November 24, 2002 11:45 AM
0 comments, last by Infuscare 21 years, 11 months ago
any idea what this means?

error C2059: syntax error : ''PCH creation point''
unexpected token(s) preceding ''{''; skipping apparent function body
 
I got like 6 of these... VC++ 6, win 2k pro _________________________________________ "Why, why why does everyone ask ''''why'''' when ''''how'''' is so much more fun" -Spawn 1997
_________________________________________"You're just jelous because the voices only talk to me"
That usually means that you have an extra bracket in there somewhere, like this:


int main()
{
{
return 0;
}

try to find it. If you can''t, it must be something else, and in that case, I have no clue what to do.

--------------------------------------
I am the master of stories.....
If only I could just write them down...
I am the master of ideas.....If only I could write them down...

This topic is closed to new replies.

Advertisement