Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.hpp

    r46da46b rfed6a0f  
    3333        const ast::TypeEnvironment & env;  ///< Substitutions performed in this resolution
    3434        ast::ptr< ast::Type > targetType;  ///< Target type for resolution
    35         bool strictMode = false;           ///< If set to true, requires targetType to be exact match (inside return cast)
    36         bool allowVoid = false;            ///< If set to true, allow void-returning function calls (only top level, cast to void and first in comma)
    3735        std::set< std::string > otypeKeys;  /// different type may map to same key
    3836
     
    6563        const ast::SymbolTable & symtab, const ast::TypeEnvironment & env );
    6664
     65/// Create an expression that preforms reference to rvalue conversion on
     66/// the given expression and update the cost of the expression.
     67const ast::Expr * referenceToRvalueConversion(
     68        const ast::Expr * expr, Cost & cost );
     69
    6770} // namespace ResolvExpr
    6871
Note: See TracChangeset for help on using the changeset viewer.