[qfcc] Remove unwanted spec symbol assignments

I suspect they were once for dealing with class and typedef names in
selectors, but they're confusing things now that I'm trying to rework
type declarations, and I doubt they were ever actually needed.
This commit is contained in:
Bill Currie 2025-01-02 14:23:29 +09:00
parent 0ea47193f2
commit 6b38fdca35

View file

@ -1162,7 +1162,6 @@ typespec_nonreserved
} else {
$$ = type_spec (&type_id);
}
$$.sym = $1.sym;
}
| CLASS_NAME protocolrefs
{
@ -1174,7 +1173,6 @@ typespec_nonreserved
} else {
$$ = type_spec ($1->type);
}
$$.sym = $1;
}
// NOTE: fields don't parse the way they should. This is not a problem
// for basic types, but functions need special treatment