We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a271c27 commit 3da4478Copy full SHA for 3da4478
cpp2py/mako/wrap.cxx
@@ -584,7 +584,7 @@ template <> struct py_converter<${en.c_name}> {
584
} // end overload ${overload._get_c_signature()}
585
%endfor # overload
586
587
- static const char * overloads_signatures[] = {${'"' + ','.join(ov._get_c_signature() for ov in py_meth.overloads) + '"'}};
+ static const char * overloads_signatures[] = {${'"' + '", "'.join(ov._get_c_signature() for ov in py_meth.overloads) + '"'}};
588
589
// FIXME Factorize this
590
// finally, no overload was successful. Composing a detailed error message, with the reason of failure of each overload
0 commit comments