Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.hpp

    r46da46b r4a89b52  
    1717
    1818#include "Candidate.hpp"
    19 #include "ResolvMode.h"
     19#include "ResolveMode.hpp"
    2020#include "AST/Fwd.hpp"
    2121#include "AST/Node.hpp"
     
    4343
    4444        /// Fill candidates with feasible resolutions for `expr`
    45         void find( const ast::Expr * expr, ResolvMode mode = {} );
     45        void find( const ast::Expr * expr, ResolveMode mode = {} );
    4646        bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors );
    4747
     
    6565        const ast::SymbolTable & symtab, const ast::TypeEnvironment & env );
    6666
     67/// Create an expression that preforms reference to rvalue conversion on
     68/// the given expression and update the cost of the expression.
     69const ast::Expr * referenceToRvalueConversion(
     70        const ast::Expr * expr, Cost & cost );
     71
    6772} // namespace ResolvExpr
    6873
Note: See TracChangeset for help on using the changeset viewer.