- File:
-
- 1 edited
-
src/ResolvExpr/CandidateFinder.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.cpp
rb9f8274 rfc134a48 41 41 #include "Common/utility.h" // for move, copy 42 42 #include "SymTab/Mangler.h" 43 #include "SymTab/Validate.h" // for validateType 43 44 #include "Tuples/Tuples.h" // for handleTupleAssignment 44 45 #include "InitTweak/InitTweak.h" // for getPointerBase … … 1090 1091 assert( toType ); 1091 1092 toType = resolveTypeof( toType, context ); 1093 // toType = SymTab::validateType( castExpr->location, toType, symtab ); 1092 1094 toType = adjustExprType( toType, tenv, symtab ); 1093 1095 … … 1580 1582 // calculate target type 1581 1583 const ast::Type * toType = resolveTypeof( initAlt.type, context ); 1584 // toType = SymTab::validateType( initExpr->location, toType, symtab ); 1582 1585 toType = adjustExprType( toType, tenv, symtab ); 1583 1586 // The call to find must occur inside this loop, otherwise polymorphic return
Note:
See TracChangeset
for help on using the changeset viewer.