Changes in src/SynTree/FunctionDecl.cc [3a5131ed:13de47bc]
- File:
-
- 1 edited
-
src/SynTree/FunctionDecl.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/FunctionDecl.cc
r3a5131ed r13de47bc 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 16 15:01:52 201713 // Update Count : 2 312 // Last Modified On : Sat Oct 1 23:06:32 2016 13 // Update Count : 21 14 14 // 15 15 … … 44 44 delete type; 45 45 delete statements; 46 deleteAll( oldDecls ); 46 47 } 47 48 … … 83 84 } // if 84 85 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 } // for 91 } // if 92 93 if ( ! oldDecls.empty() ) { 94 os << string( indent + 2, ' ' ) << "with parameter declarations" << endl; 95 printAll( oldDecls, os, indent + 4 ); 96 } // if 85 97 if ( statements ) { 86 98 os << string( indent + 2, ' ' ) << "with body " << endl;
Note:
See TracChangeset
for help on using the changeset viewer.