You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The column numbers reported in error messages are sometimes wrong and sometimes they depend on previous lines. Examples compiled with ./gmqcc -std=gmqcc file.qc -o out.dat:
A file with this one line:
typedef float INT-;
reports error (error: expected semicolon after typedef) on line 1, column 12 (which is inside the float word).
Adding a line before it:
int x;
typedef float INT-;
causes the reported error to be on line 2, column 14 (at the end of float).
The text was updated successfully, but these errors were encountered:
The column numbers reported in error messages are sometimes wrong and sometimes they depend on previous lines. Examples compiled with
./gmqcc -std=gmqcc file.qc -o out.dat
:A file with this one line:
reports error (
error: expected semicolon after typedef
) on line 1, column 12 (which is inside thefloat
word).Adding a line before it:
causes the reported error to be on line 2, column 14 (at the end of
float
).The text was updated successfully, but these errors were encountered: