Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/AddressExpr.cc

    r68f9c43 rd29fa5f  
    5858}
    5959
     60AddressExpr::~AddressExpr() {
     61        delete arg;
     62}
     63
    6064void AddressExpr::print( std::ostream &os, Indenter indent ) const {
    6165        os << "Address of:" << std::endl;
     
    7175}
    7276LabelAddressExpr::LabelAddressExpr( const LabelAddressExpr & other ) : Expression( other ), arg( other.arg ) {}
     77LabelAddressExpr::~LabelAddressExpr() {}
    7378
    7479void LabelAddressExpr::print( std::ostream & os, Indenter ) const {
Note: See TracChangeset for help on using the changeset viewer.