Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Print.hpp

    r0351e9f r432ce7a  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Print.hpp -- Print an AST (or sub-tree) to a stream.
     7// Print.hpp --
    88//
    99// Author           : Thierry Delisle
     
    3535template< typename Coll >
    3636void printAll( std::ostream & os, const Coll & c, Indenter indent = {} ) {
    37         for ( const auto & i : c ) {
    38                 if ( ! i ) continue;
    39 
    40                 os << indent;
    41                 print( os, i, indent );
    42                 os << std::endl;
    43         }
     37    for ( const auto & i : c ) {
     38        if ( ! i ) continue;
     39       
     40        os << indent;
     41        print( os, i, indent );
     42        os << std::endl;
     43    }
    4444}
    4545
Note: See TracChangeset for help on using the changeset viewer.