Changes in src/AST/Print.cpp [361bf01:6a45bd78]
- File:
-
- 1 edited
-
src/AST/Print.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.cpp
r361bf01 r6a45bd78 146 146 } 147 147 148 void print( const ast:: FunctionType::ForallList & forall ) {148 void print( const ast::ParameterizedType::ForallList & forall ) { 149 149 if ( forall.empty() ) return; 150 150 os << "forall" << endl; … … 259 259 } 260 260 261 void preprint( const ast:: FunctionType * node ) {261 void preprint( const ast::ParameterizedType * node ) { 262 262 print( node->forall ); 263 263 print( node->qualifiers ); … … 265 265 266 266 void preprint( const ast::BaseInstType * node ) { 267 print( node->forall ); 267 268 print( node->attributes ); 268 269 print( node->qualifiers );
Note:
See TracChangeset
for help on using the changeset viewer.