File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -626,7 +626,7 @@ bool Cppyy::AppendTypesSlow(const std::string& name,
626
626
627
627
type = GetType (i, /* enable_slow_lookup=*/ true );
628
628
if (!type && parent && (Cpp::IsNamespace (parent) || Cpp::IsClass (parent))) {
629
- type = Cppyy::GetTypeFromScope (Cppyy::GetNamed (name , parent));
629
+ type = Cppyy::GetTypeFromScope (Cppyy::GetNamed (resolved_name , parent));
630
630
}
631
631
632
632
if (!type) {
@@ -1644,8 +1644,8 @@ Cppyy::TCppMethod_t Cppyy::GetMethodTemplate(
1644
1644
// CPyCppyy assumes that we attempt instantiation here
1645
1645
std::vector<Cpp::TemplateArgInfo> arg_types;
1646
1646
std::vector<Cpp::TemplateArgInfo> templ_params;
1647
- Cppyy::AppendTypesSlow (proto, arg_types);
1648
- Cppyy::AppendTypesSlow (explicit_params, templ_params);
1647
+ Cppyy::AppendTypesSlow (proto, arg_types, scope );
1648
+ Cppyy::AppendTypesSlow (explicit_params, templ_params, scope );
1649
1649
1650
1650
Cppyy::TCppMethod_t cppmeth = Cpp::BestOverloadFunctionMatch (
1651
1651
unresolved_candidate_methods, templ_params, arg_types);
You can’t perform that action at this time.
0 commit comments