Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidateFinder.hpp

    rfed6a0f r46da46b  
    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)
    3537        std::set< std::string > otypeKeys;  /// different type may map to same key
    3638
     
    6365        const ast::SymbolTable & symtab, const ast::TypeEnvironment & env );
    6466
    65 /// Create an expression that preforms reference to rvalue conversion on
    66 /// the given expression and update the cost of the expression.
    67 const ast::Expr * referenceToRvalueConversion(
    68         const ast::Expr * expr, Cost & cost );
    69 
    7067} // namespace ResolvExpr
    7168
Note: See TracChangeset for help on using the changeset viewer.