Changes in src/GenPoly/Specialize.cc [d7dc824:623ecf3]
- File:
-
- 1 edited
-
src/GenPoly/Specialize.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Specialize.cc
rd7dc824 r623ecf3 93 93 } 94 94 95 bool needsTupleSpecialization( Type *formalType, Type *actualType ) {95 bool needsTupleSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) { 96 96 // Needs tuple specialization if the structure of the formal type and actual type do not match. 97 97 // This is the case if the formal type has ttype polymorphism, or if the structure of tuple types … … 112 112 113 113 bool needsSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) { 114 return needsPolySpecialization( formalType, actualType, env ) || needsTupleSpecialization( formalType, actualType );114 return needsPolySpecialization( formalType, actualType, env ) || needsTupleSpecialization( formalType, actualType, env ); 115 115 } 116 116
Note:
See TracChangeset
for help on using the changeset viewer.