~eda-qa/leaflang/cpp

« back to all changes in this revision

Viewing changes to src/test/type_converter_function_call.cpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-06-03 05:03:54 UTC
  • mfrom: (98.1.18 typefixes)
  • Revision ID: eda-qa@disemia.com-20170603050354-6hfg5huvq56zjs66
merging typefixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
                type_converter::convert_t cost;
15
15
                try {
16
16
                        type_ref tog, fromg;
17
 
                        tog = determine_type( sto );
 
17
                        tog = determine_type( sto, type_identifier::df_allow_param );
18
18
                        auto & to = tog.extr().cast<intr_type_value_list>();
19
 
                        fromg = determine_type( sfrom );
 
19
                        fromg = determine_type( sfrom, type_identifier::df_allow_param );
20
20
                        auto & from = fromg.extr().cast<intr_type_value_list>();
21
21
 
22
22
                        cost = tcvt.convert_function_call( to, from );