Changes in src/AST/Expr.cpp [53f4b55:691bf0a]
- File:
-
- 1 edited
-
src/AST/Expr.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.cpp
r53f4b55 r691bf0a 301 301 // --- OffsetofExpr 302 302 303 OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem ) 304 : OffsetofExpr( loc, ty, mem, nullptr ) {} 305 303 306 OffsetofExpr::OffsetofExpr( const CodeLocation & loc, const Type * ty, const DeclWithType * mem, const Type * res ) 304 307 : Expr( loc, res ), type( ty ), member( mem ) { … … 321 324 322 325 // --- CommaExpr 323 324 326 bool CommaExpr::get_lvalue() const { 325 327 // This is wrong by C, but the current implementation uses it.
Note:
See TracChangeset
for help on using the changeset viewer.