Changeset 17fa94f for src/AST/Expr.hpp
- Timestamp:
- Feb 11, 2025, 11:24:07 AM (8 weeks ago)
- Branches:
- master
- Children:
- 691bf0a
- Parents:
- 3e5e32cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/AST/Expr.hpp ¶
r3e5e32cf r17fa94f 483 483 484 484 SizeofExpr( const CodeLocation & loc, const Type * t ); 485 SizeofExpr( const CodeLocation & loc, const Type * t, const Type * r ); 485 486 486 487 const Expr * accept( Visitor & v ) const override { return v.visit( this ); } … … 496 497 497 498 AlignofExpr( const CodeLocation & loc, const Type * t ); 499 AlignofExpr( const CodeLocation & loc, const Type * t, const Type * r ); 498 500 499 501 const Expr * accept( Visitor & v ) const override { return v.visit( this ); } … … 538 540 539 541 OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem ); 542 OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem, const Type * res ); 540 543 541 544 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
Note: See TracChangeset
for help on using the changeset viewer.