|
The errors you were getting was in the precompile stage, where it checks if every headerfile is pressent and if the definitions mentioned in the code is valid.
It wasn't even at the stage, where it did the parse checking, to see if you had correct
<type> <variabel> <operator> <value>
befor it gets to compile the code.
Your errors were produced in the very first runthrough of your code, and smart compilers makes atleast 3 runs.
|