We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6593448 commit a9ecd42Copy full SHA for a9ecd42
clingwrapper/src/clingwrapper.cxx
@@ -1490,8 +1490,9 @@ Cppyy::TCppMethod_t Cppyy::GetMethodTemplate(
1490
size_t start = name.find('<');
1491
size_t end = name.rfind('>');
1492
explicit_params = name.substr(start + 1, end - start - 1);
1493
- } else
+ } else {
1494
pureName = name;
1495
+ }
1496
1497
std::vector<Cppyy::TCppMethod_t> unresolved_candidate_methods;
1498
Cpp::GetClassTemplatedMethods(pureName, scope,
0 commit comments