Changes in src/SynTree/Declaration.cc [3ed994e:42107b4]
- File:
-
- 1 edited
-
src/SynTree/Declaration.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
r3ed994e r42107b4 38 38 } 39 39 40 Declaration::~Declaration() {41 }42 43 40 void Declaration::fixUniqueId() { 44 41 // don't need to set unique ID twice … … 68 65 } 69 66 70 AsmDecl::~AsmDecl() {71 delete stmt;72 }73 74 67 void AsmDecl::print( std::ostream &os, Indenter indent ) const { 75 68 stmt->print( os, indent ); … … 87 80 } 88 81 89 StaticAssertDecl::~StaticAssertDecl() {90 delete condition;91 delete message;92 }93 94 82 void StaticAssertDecl::print( std::ostream &os, Indenter indent ) const { 95 83 os << "Static Assert with condition: "; … … 104 92 } 105 93 106 107 94 // Local Variables: // 108 95 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.