Changes in src/SynTree/AddressExpr.cc [68f9c43:d29fa5f]
- File:
-
- 1 edited
-
src/SynTree/AddressExpr.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/AddressExpr.cc
r68f9c43 rd29fa5f 58 58 } 59 59 60 AddressExpr::~AddressExpr() { 61 delete arg; 62 } 63 60 64 void AddressExpr::print( std::ostream &os, Indenter indent ) const { 61 65 os << "Address of:" << std::endl; … … 71 75 } 72 76 LabelAddressExpr::LabelAddressExpr( const LabelAddressExpr & other ) : Expression( other ), arg( other.arg ) {} 77 LabelAddressExpr::~LabelAddressExpr() {} 73 78 74 79 void LabelAddressExpr::print( std::ostream & os, Indenter ) const {
Note:
See TracChangeset
for help on using the changeset viewer.