- File:
-
- 1 edited
-
src/ResolvExpr/CandidateFinder.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.hpp
r46da46b r4a89b52 17 17 18 18 #include "Candidate.hpp" 19 #include "Resolv Mode.h"19 #include "ResolveMode.hpp" 20 20 #include "AST/Fwd.hpp" 21 21 #include "AST/Node.hpp" … … 43 43 44 44 /// Fill candidates with feasible resolutions for `expr` 45 void find( const ast::Expr * expr, Resolv Mode mode = {} );45 void find( const ast::Expr * expr, ResolveMode mode = {} ); 46 46 bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors ); 47 47 … … 65 65 const ast::SymbolTable & symtab, const ast::TypeEnvironment & env ); 66 66 67 /// Create an expression that preforms reference to rvalue conversion on 68 /// the given expression and update the cost of the expression. 69 const ast::Expr * referenceToRvalueConversion( 70 const ast::Expr * expr, Cost & cost ); 71 67 72 } // namespace ResolvExpr 68 73
Note:
See TracChangeset
for help on using the changeset viewer.