diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2023-02-18 16:28:33 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2023-02-18 16:28:33 +0000 |
commit | 7dccbf86945f166f907ceb4b993cd625d98527c3 (patch) | |
tree | 02eb036859fd9bbb5e29c972f56f93676a90874d /Examples/test-suite/python_flatstaticmethod.i | |
parent | 1341df17fb463b472e8d199627f36df8ff617fab (diff) | |
download | swig-7dccbf86945f166f907ceb4b993cd625d98527c3.tar.gz |
Duplicate parameter name handling improvements
When a method with duplicate parameter names is wrapped such as:
void fn_3parms(int p_a, int p_a, double p_c);
Previously all duplicate parameter names were changed in order to
provide unique parameter names:
void fn_3parms(int arg0, int arg1, double p_c)
Now the parameter names changed are just the 2nd and subsequent duplicate
parameter names:
void fn_3parms(int p_a, int arg1, double p_c)
Diffstat (limited to 'Examples/test-suite/python_flatstaticmethod.i')
0 files changed, 0 insertions, 0 deletions