Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/SynTree/CompoundStmt.cc

    rc11e31c rb1a6d6b  
    1111#include <functional>
    1212
    13 using std::string;
    14 using std::endl;
     13#include <iostream>
     14using namespace std;
    1515
    1616CompoundStmt::CompoundStmt( std::list<Label> labels )
     
    3333CompoundStmt::print( std::ostream &os, int indent )
    3434{
    35     os << "\r" << string(indent, ' ') << "CompoundStmt Statement" << endl ;
    36     printAll( kids, os, indent + 4 );
     35    os << "\r" << string(indent, ' ') << "CompoundStmt" << endl ;
     36    printAll( kids, os, indent+2 );
    3737}
    3838
Note: See TracChangeset for help on using the changeset viewer.