mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Use GetQualifier() instead of accessing the field directly.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4332 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7992bfb74a
commit
ea582a9d74
@ -294,7 +294,7 @@ static void FixQualifiers (Type* DataType)
|
||||
while (T->C != T_END) {
|
||||
if (IsTypeArray (T)) {
|
||||
/* Extract any type qualifiers */
|
||||
Q |= T->C & T_MASK_QUAL;
|
||||
Q |= GetQualifier (T->C);
|
||||
T->C = UnqualifiedType (T->C);
|
||||
} else {
|
||||
/* Add extracted type qualifiers here */
|
||||
|
Loading…
Reference in New Issue
Block a user