Changeset f1149ac for src/ResolvExpr
- Timestamp:
- Feb 26, 2024, 2:54:44 PM (10 months ago)
- Branches:
- master
- Children:
- 00eaeb8, bc61563
- Parents:
- 3f9a8d0
- Location:
- src/ResolvExpr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CommonType.cc
r3f9a8d0 rf1149ac 398 398 } 399 399 } 400 } else if ( const ast::EnumPosType * pos =dynamic_cast< const ast::EnumPosType * >( type2 ) ) {400 } else if ( dynamic_cast< const ast::EnumPosType * >( type2 ) ) { 401 401 ast::BasicType::Kind kind = commonTypes[ basic->kind ][ ast::BasicType::SignedInt ]; 402 402 if ( -
src/ResolvExpr/Unify.cc
r3f9a8d0 rf1149ac 517 517 } 518 518 519 void postvisit( const ast::EnumPosType * posType) {519 void postvisit( const ast::EnumPosType * ) { 520 520 // Does nothing for now. Handled in ReplacePseudoFunc 521 521 // Might move here in the future
Note: See TracChangeset
for help on using the changeset viewer.