Changeset 53f4b55 for src/AST/Expr.cpp


Ignore:
Timestamp:
Feb 12, 2025, 4:12:04 PM (7 weeks ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
c341b57
Parents:
5e8d75bb
Message:

Remove the untyped constructor for (typed) OffsetofExpr?. The one time it was used may not need to create a typed expression but we have all the information to do so.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/AST/Expr.cpp

    r5e8d75bb r53f4b55  
    301301// --- OffsetofExpr
    302302
    303 OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem )
    304 : OffsetofExpr( loc, ty, mem, nullptr ) {}
    305 
    306303OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem, const Type * res )
    307304: Expr( loc, res ), type( ty ), member( mem ) {
     
    324321
    325322// --- CommaExpr
     323
    326324bool CommaExpr::get_lvalue() const {
    327325        // This is wrong by C, but the current implementation uses it.
Note: See TracChangeset for help on using the changeset viewer.