- Timestamp:
 - Feb 17, 2018, 12:09:02 PM (8 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, resolv-new, with_gc
 - Children:
 - 14cbfad
 - Parents:
 - 5964127
 - Location:
 - src/ResolvExpr
 - Files:
 - 
      
- 2 edited
 
- 
          
  AlternativeFinder.cc (modified) (2 diffs)
 - 
          
  Resolver.cc (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/ResolvExpr/AlternativeFinder.cc
r5964127 r93401f8 10 10 // Created On : Sat May 16 23:52:08 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 28 13:47:24 201713 // Update Count : 3 212 // Last Modified On : Sat Feb 17 11:19:39 2018 13 // Update Count : 33 14 14 // 15 15 … … 255 255 stream << "Cannot choose between " << winners.size() << " alternatives for expression\n"; 256 256 expr->print( stream ); 257 stream << " Alternatives are:\n";257 stream << " Alternatives are:\n"; 258 258 printAlts( winners, stream, 1 ); 259 259 throw SemanticError( expr->location, stream.str() );  - 
      
src/ResolvExpr/Resolver.cc
r5964127 r93401f8 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sun May 17 12:17:01 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Tus Aug 8 16:06:00 201713 // Update Count : 21 211 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Feb 17 11:19:40 2018 13 // Update Count : 213 14 14 // 15 15 … … 179 179 stream << "Cannot choose between " << winners.size() << " alternatives for " << kindStr << (kindStr != "" ? " " : "") << "expression\n"; 180 180 untyped->print( stream ); 181 stream << " Alternatives are:\n";181 stream << " Alternatives are:\n"; 182 182 printAlts( winners, stream, 1 ); 183 183 throw SemanticError( untyped->location, stream.str() );  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.