Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.cc

    r42107b4 r3ed994e  
    3838}
    3939
     40Declaration::~Declaration() {
     41}
     42
    4043void Declaration::fixUniqueId() {
    4144        // don't need to set unique ID twice
     
    6568}
    6669
     70AsmDecl::~AsmDecl() {
     71        delete stmt;
     72}
     73
    6774void AsmDecl::print( std::ostream &os, Indenter indent ) const {
    6875        stmt->print( os, indent );
     
    8087}
    8188
     89StaticAssertDecl::~StaticAssertDecl() {
     90        delete condition;
     91        delete message;
     92}
     93
    8294void StaticAssertDecl::print( std::ostream &os, Indenter indent ) const {
    8395        os << "Static Assert with condition: ";
     
    92104}
    93105
     106
    94107// Local Variables: //
    95108// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.