Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/BaseSyntaxNode.h

    r99d4584 r17129659  
    4141  /// * Expressions should not finish with a newline, since the expression's parent has better information.
    4242        virtual void print( std::ostream & os, Indenter indent = {} ) const = 0;
    43   // void print( std::ostream & os, unsigned int indent ) {
    44   //   print( os, Indenter{ indent });
    45   // }
     43  void print( std::ostream & os, unsigned int indent ) {
     44    print( os, Indenter{ Indenter::tabsize, indent });
     45  }
    4646};
    4747
Note: See TracChangeset for help on using the changeset viewer.