Changeset b3c36f4 for src/SynTree/Visitor.cc
- Timestamp:
- Jun 5, 2017, 11:43:18 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 7e003011
- Parents:
- fa21ac9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rfa21ac9 rb3c36f4 122 122 } 123 123 124 void Visitor::visit( BranchStmt *branchStmt ) {124 void Visitor::visit( __attribute__((unused)) BranchStmt *branchStmt ) { 125 125 } 126 126 … … 143 143 } 144 144 145 void Visitor::visit( NullStmt *nullStmt ) {145 void Visitor::visit( __attribute__((unused)) NullStmt *nullStmt ) { 146 146 } 147 147 … … 445 445 446 446 447 void Visitor::visit( Subrange *subrange ) {}448 449 450 void Visitor::visit( Constant *constant ) {}447 void Visitor::visit( __attribute__((unused)) Subrange *subrange ) {} 448 449 450 void Visitor::visit( __attribute__((unused)) Constant *constant ) {} 451 451 // Local Variables: // 452 452 // tab-width: 4 //
Note: See TracChangeset
for help on using the changeset viewer.