Changes in src/GenPoly/FindFunction.cc [b8b5535:c6b4432]
- File:
-
- 1 edited
-
src/GenPoly/FindFunction.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/FindFunction.cc
rb8b5535 rc6b4432 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // FindFunction.cc -- Find function types in a larger type.7 // FindFunction.cc -- 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. 71 73 ast::accept_each( type->returns, *visitor ); 72 74 } … … 77 79 functions.push_back( type ); 78 80 if ( replaceMode ) { 79 // Replace type parameters in function type with void *.81 // replace type parameters in function type with void* 80 82 ret = scrubTypeVars( ast::deepCopy( type ), typeVars ); 81 83 } // if
Note:
See TracChangeset
for help on using the changeset viewer.