> Ok when I try to compile my particle engine code I am for somereason
getting:
> error C2143: syntax error : missing ')' before ';'
> on this code:
> void ParticleSystem::Render(void)
> {
>
>  int i;
>  while( i < MAX_PARTICLES)
>  {
> /*code*/
> }
> }
>
> But I dont know why the hell its doing that  Any clues why it is?

I suspect your error is actually caused by a line further up in your code.
The compiler is just recovering from the error at the it is showing you.
I'll bet if you comment out that whole block (all code shown), you will
still get the error in something later on in the file.

Jeffrey "botman" Broome


_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please visit:
http://list.valvesoftware.com/mailman/listinfo/hlcoders

Reply via email to