Changes in src/SynTree/Declaration.cc [582ee28:e149f77]
- File:
-
- 1 edited
-
src/SynTree/Declaration.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
r582ee28 re149f77 42 42 43 43 void Declaration::fixUniqueId() { 44 // don't need to set unique ID twice45 if ( uniqueId ) return;46 44 uniqueId = ++lastUniqueId; 47 45 idMap[ uniqueId ] = this; … … 72 70 } 73 71 74 void AsmDecl::print( std::ostream &os, Indenterindent ) const {72 void AsmDecl::print( std::ostream &os, int indent ) const { 75 73 stmt->print( os, indent ); 76 74 } 77 75 78 void AsmDecl::printShort( std::ostream &os, Indenterindent ) const {76 void AsmDecl::printShort( std::ostream &os, int indent ) const { 79 77 stmt->print( os, indent ); 80 78 }
Note:
See TracChangeset
for help on using the changeset viewer.