Changes in src/AST/Expr.cpp [b1f2007d:59c8dff]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.cpp
rb1f2007d r59c8dff 307 307 } 308 308 309 // 310 311 // --- EnumPosExpr 312 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 309 323 // --- LogicalExpr 310 324
Note:
See TracChangeset
for help on using the changeset viewer.