Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Expr.cpp

    rb1f2007d r59c8dff  
    307307}
    308308
     309//
     310
     311// --- EnumPosExpr
     312EnumPosExpr::EnumPosExpr( const CodeLocation & loc, const EnumInstType * ty)
     313: Expr( loc, new BasicType{ BasicType::UnsignedInt }), type( ty ) {
     314        assert( ty );
     315}
     316
     317EnumPosExpr::EnumPosExpr( const CodeLocation & loc, const Expr * expr )
     318: Expr( loc, new BasicType{ BasicType::UnsignedInt }), expr(expr) {
     319        assert( expr );
     320}
     321
     322
    309323// --- LogicalExpr
    310324
Note: See TracChangeset for help on using the changeset viewer.