Changes in src/AST/Print.hpp [6f4b7f2:461046f]
- File:
-
- 1 edited
-
src/AST/Print.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.hpp
r6f4b7f2 r461046f 23 23 namespace ast { 24 24 25 class Decl;26 27 /// Print a node with the given indenter28 25 void print( std::ostream & os, const ast::Node * node, Indenter indent = {} ); 29 26 … … 32 29 } 33 30 34 /// Print a declaration in its short form35 void printShort( std::ostream & os, const ast::Decl * node, Indenter indent = {} );36 37 inline void printShort( std::ostream & os, const ast::Decl * node, unsigned int indent ) {38 printShort( os, node, Indenter{ Indenter::tabsize, indent } );39 31 } 40 41 }
Note:
See TracChangeset
for help on using the changeset viewer.