Changes in src/SynTree/Statement.cc [b3c36f4:8bf784a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Statement.cc
rb3c36f4 r8bf784a 30 30 Statement::Statement( std::list<Label> _labels ) : labels( _labels ) {} 31 31 32 void Statement::print( __attribute__((unused)) std::ostream &, __attribute__((unused))int indent ) const {}32 void Statement::print( std::ostream &, int indent ) const {} 33 33 34 34 Statement::~Statement() {} … … 365 365 NullStmt::NullStmt() : CompoundStmt( std::list<Label>() ) {} 366 366 367 void NullStmt::print( std::ostream &os, __attribute__((unused))int indent ) const {367 void NullStmt::print( std::ostream &os, int indent ) const { 368 368 os << "Null Statement" << endl ; 369 369 }
Note:
See TracChangeset
for help on using the changeset viewer.