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