Ignore:
Timestamp:
Jun 25, 2024, 12:09:43 PM (10 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
d96d4f0
Parents:
f3b67b6 (diff), 5eb3f65 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/ResolvExpr/CandidateFinder.cpp

    rf3b67b6 r6803ff1  
    99// Author           : Aaron B. Moss
    1010// Created On       : Wed Jun 5 14:30:00 2019
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Mar 16 11:58:00 2022
    13 // Update Count     : 3
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Sat Jun 22 08:07:26 2024
     13// Update Count     : 4
    1414//
    1515
     
    909909                        auto location = expr->location;
    910910                        auto callExpr = new ast::UntypedExpr(
    911                                 location, new ast::NameExpr( location, "valueE" ), {expr}
     911                                location, new ast::NameExpr( location, "value" ), {expr}
    912912                        );
    913913                        finder.find( callExpr );
    914914                        CandidateList winners = findMinCost( finder.candidates );
    915915                        if (winners.size() != 1) {
    916                                 SemanticError( callExpr, "Ambiguous expression in valueE..." );
     916                                SemanticError( callExpr, "Ambiguous expression in value..." );
    917917                        }
    918918                        CandidateRef & choice = winners.front();
Note: See TracChangeset for help on using the changeset viewer.