Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/SatisfyAssertions.cpp

    rda4a570 rc6b4432  
    4646#include "SymTab/Mangler.h"
    4747
    48 
    49 
    5048namespace ResolvExpr {
    5149
    5250// in CandidateFinder.cpp; unique ID for assertion satisfaction
    53 extern UniqueId globalResnSlot;
     51extern ast::UniqueId globalResnSlot;
    5452
    5553namespace {
     
    298296                        if ( !expr->inferred.hasSlots() ) return expr;
    299297                        // if ( expr->inferred.mode != ast::Expr::InferUnion::Slots ) return expr;
    300                         std::vector<UniqueId> missingSlots;
     298                        std::vector<ast::UniqueId> missingSlots;
    301299                        // find inferred parameters for resolution slots
    302300                        ast::InferredParams * newInferred = new ast::InferredParams();
    303                         for ( UniqueId slot : expr->inferred.resnSlots() ) {
     301                        for ( ast::UniqueId slot : expr->inferred.resnSlots() ) {
    304302                                // fail if no matching assertions found
    305303                                auto it = inferred.find( slot );
Note: See TracChangeset for help on using the changeset viewer.