Changes in src/GenPoly/FindFunction.cc [c6b4432:b8b5535]
- File:
-
- 1 edited
-
src/GenPoly/FindFunction.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/FindFunction.cc
rc6b4432 rb8b5535 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // FindFunction.cc -- 7 // FindFunction.cc -- Find function types in a larger type. 8 8 // 9 9 // Author : Richard C. Bilson … … 69 69 GuardScope( typeVars ); 70 70 handleForall( type->forall ); 71 //ast::accept_all( type->returns, *visitor );72 // This might have to become ast::mutate_each with return.73 71 ast::accept_each( type->returns, *visitor ); 74 72 } … … 79 77 functions.push_back( type ); 80 78 if ( replaceMode ) { 81 // replace type parameters in function type with void*79 // Replace type parameters in function type with void *. 82 80 ret = scrubTypeVars( ast::deepCopy( type ), typeVars ); 83 81 } // if
Note:
See TracChangeset
for help on using the changeset viewer.