Changeset 54cd1a51 for src/AST/Expr.hpp
- Timestamp:
- Feb 11, 2025, 6:08:19 PM (11 months ago)
- Branches:
- master
- Children:
- 502ff9e, a8404d9
- Parents:
- 4d5c5b6a (diff), 691bf0a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/AST/Expr.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
r4d5c5b6a r54cd1a51 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.