I am trying to use a curly brace block to limit the scope of some functions, but VC++ is giving me the error:
'{' : missing function header (old-style formal list?)
I even tried something as simple as
{ int i = 0; }
and it still returned that error.
What am I doing wrong?