Pelle,
After a very stressing debug last night I would ask you to add two warnings very useful in some cases (in my case sure
).
I get some misterious code malfunction and I could not detect why nevertheless a lot of debug and time. At last I decided to use another compiler, and
that it!
The compiler worned me about a "comment extension on next line", due to a code line follwed by a single line comment ending with a backslash:
......................
a = b //assign variable \
c = d //this line is NOT CODED!
result = a * c; //wrong c not assigned yet
.....................
the other warning was referred to #if #endif number mismatch.
Could you please add these two warnings to help to avoid frustrating debugs for a so stupid cases?
Thank-you.
F.