Changes in src/AST/Expr.cpp [59c8dff:b1f2007d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.cpp
r59c8dff rb1f2007d 307 307 } 308 308 309 //310 311 // --- EnumPosExpr312 EnumPosExpr::EnumPosExpr( const CodeLocation & loc, const EnumInstType * ty)313 : Expr( loc, new BasicType{ BasicType::UnsignedInt }), type( ty ) {314 assert( ty );315 }316 317 EnumPosExpr::EnumPosExpr( const CodeLocation & loc, const Expr * expr )318 : Expr( loc, new BasicType{ BasicType::UnsignedInt }), expr(expr) {319 assert( expr );320 }321 322 323 309 // --- LogicalExpr 324 310
Note:
See TracChangeset
for help on using the changeset viewer.