Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.cc

    r582ee28 re149f77  
    4242
    4343void Declaration::fixUniqueId() {
    44         // don't need to set unique ID twice
    45         if ( uniqueId ) return;
    4644        uniqueId = ++lastUniqueId;
    4745        idMap[ uniqueId ] = this;
     
    7270}
    7371
    74 void AsmDecl::print( std::ostream &os, Indenter indent ) const {
     72void AsmDecl::print( std::ostream &os, int indent ) const {
    7573        stmt->print( os, indent );
    7674}
    7775
    78 void AsmDecl::printShort( std::ostream &os, Indenter indent ) const {
     76void AsmDecl::printShort( std::ostream &os, int indent ) const {
    7977        stmt->print( os, indent );
    8078}
Note: See TracChangeset for help on using the changeset viewer.