Ignore:
Timestamp:
Apr 4, 2024, 1:40:36 PM (3 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
d9bad51
Parents:
4a72fef
Message:

One more bit of clean-up, improving some names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/DeclarationNode.cc

    r4a72fef r1cfe640  
    457457                SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, TypeData::builtinTypeNames[builtin] );
    458458        } // if
    459         type = ::addQualifiers( q->type, type );
     459        type = ::addQualifiers( type, q->type );
    460460        q->type = nullptr;
    461461
     
    470470        copySpecifiers( o, copyattr );
    471471        if ( o->type ) {
    472                 type = ::addType( o->type, type, o->attributes );
     472                type = ::addType( type, o->type, o->attributes );
    473473                o->type = nullptr;
    474474        } // if
Note: See TracChangeset for help on using the changeset viewer.