Changes in src/AST/Expr.cpp [857b5f9:5cc53b2]
- File:
-
- 1 edited
-
src/AST/Expr.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.cpp
r857b5f9 r5cc53b2 283 283 : Expr( loc, new BasicType{ BasicKind::LongUnsignedInt } ), type( t ) {} 284 284 285 // --- CountExpr 286 287 CountExpr::CountExpr( const CodeLocation & loc, const Expr * e ) 288 : Expr( loc, new BasicType( BasicKind::LongUnsignedInt) ), expr(e), type( nullptr ) {} 289 290 CountExpr::CountExpr( const CodeLocation & loc, const Type * t ) 291 : Expr( loc, new BasicType( BasicKind::LongUnsignedInt) ), expr(nullptr), type( t ) {} 292 285 293 // --- AlignofExpr 286 294 287 295 AlignofExpr::AlignofExpr( const CodeLocation & loc, const Type * t ) 288 296 : Expr( loc, new BasicType{ BasicKind::LongUnsignedInt } ), type( t ) {} 289 290 // --- CountofExpr291 292 CountofExpr::CountofExpr( const CodeLocation & loc, const Type * t )293 : Expr( loc, new BasicType( BasicKind::LongUnsignedInt) ), type( t ) {}294 297 295 298 // --- OffsetofExpr
Note:
See TracChangeset
for help on using the changeset viewer.