Fixed proxy wrapper name
parent
8ef78db9d8
commit
8a05136ca0
|
@ -83,11 +83,8 @@ void StaticMethod::proxy_wrapper_fragments(FileWriter& proxyFile,
|
||||||
// Output proxy matlab code
|
// Output proxy matlab code
|
||||||
proxyFile.oss << " " << (i == 0 ? "" : "else");
|
proxyFile.oss << " " << (i == 0 ? "" : "else");
|
||||||
const int id = (int) functionNames.size();
|
const int id = (int) functionNames.size();
|
||||||
string expanded = wrapperName;
|
argumentList(i).emit_conditional_call(proxyFile, returnValue(i),
|
||||||
if (!templateArgValue_.empty())
|
wrapperName, id);
|
||||||
expanded += templateArgValue_.name;
|
|
||||||
argumentList(i).emit_conditional_call(proxyFile, returnValue(i), expanded,
|
|
||||||
id);
|
|
||||||
|
|
||||||
// Output C++ wrapper code
|
// Output C++ wrapper code
|
||||||
const string wrapFunctionName = wrapper_fragment(wrapperFile,
|
const string wrapFunctionName = wrapper_fragment(wrapperFile,
|
||||||
|
|
Loading…
Reference in New Issue