Changeset 396ee0a for src/SynTree/FunctionDecl.cc
- Timestamp:
- Feb 22, 2017, 2:42:11 PM (9 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:
- 131dbb3, 692de479
- Parents:
- 0788b739 (diff), fc39193 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/FunctionDecl.cc
r0788b739 r396ee0a 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Oct 1 23:06:32 201613 // Update Count : 2 112 // Last Modified On : Thu Feb 16 15:01:52 2017 13 // Update Count : 23 14 14 // 15 15 … … 44 44 delete type; 45 45 delete statements; 46 deleteAll( oldDecls );47 46 } 48 47 … … 84 83 } // if 85 84 86 if ( ! oldIdents.empty() ) {87 os << string( indent + 2, ' ' ) << "with parameter names" << endl;88 for ( std::list< std::string >::const_iterator i = oldIdents.begin(); i != oldIdents.end(); ++i ) {89 os << string( indent + 4, ' ' ) << *i << endl;90 } // for91 } // if92 93 if ( ! oldDecls.empty() ) {94 os << string( indent + 2, ' ' ) << "with parameter declarations" << endl;95 printAll( oldDecls, os, indent + 4 );96 } // if97 85 if ( statements ) { 98 86 os << string( indent + 2, ' ' ) << "with body " << endl;
Note:
See TracChangeset
for help on using the changeset viewer.