2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

now generates support for n argument member functions and n+1

argument member functions at the suggestion of "Ralf W. Grosse-Kunstleve"
<rwgk@cci.lbl.gov>


[SVN r8148]
This commit is contained in:
Dave Abrahams
2000-11-06 05:16:36 +00:00
parent 67fbdc9da3
commit fb0dd45a84

View File

@@ -89,7 +89,7 @@ free_function = '''%{ template <%(class A%n%:, %)>
def gen_caller(member_function_args, free_function_args = None):
if free_function_args is None:
free_function_args = member_function_args
free_function_args = member_function_args + 1
return_none = ''';
return none();'''