Changeset 2a08c25
- Timestamp:
- Jun 4, 2018, 10:11:02 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 0a75b77
- Parents:
- 41e16b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Resolver.cc
r41e16b1 r2a08c25 207 207 Alternative & choice = winners.front(); 208 208 if ( findDeletedExpr( choice.expr ) ) { 209 SemanticError( choice.expr, "Unique best alternative includes deleted identifier in " );209 SemanticError( untyped->location, choice.expr, "Unique best alternative includes deleted identifier in " ); 210 210 } 211 211 alt = std::move( choice ); … … 242 242 243 243 static CastExpr untyped( nullptr ); // cast to void 244 untyped.location = expr->location; 244 245 245 246 // set up and resolve expression cast to void … … 274 275 void findSingleExpression( Expression *& untyped, Type * type, const SymTab::Indexer & indexer ) { 275 276 assert( untyped && type ); 277 // transfer location to generated cast for error purposes 278 CodeLocation location = untyped->location; 276 279 untyped = new CastExpr( untyped, type ); 280 untyped->location = location; 277 281 findSingleExpression( untyped, indexer ); 278 282 removeExtraneousCast( untyped, indexer );
Note: See TracChangeset
for help on using the changeset viewer.