summaryrefslogtreecommitdiff
path: root/Examples/test-suite/common.mk
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2023-02-18 16:28:33 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2023-02-18 16:28:33 +0000
commit7dccbf86945f166f907ceb4b993cd625d98527c3 (patch)
tree02eb036859fd9bbb5e29c972f56f93676a90874d /Examples/test-suite/common.mk
parent1341df17fb463b472e8d199627f36df8ff617fab (diff)
downloadswig-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/common.mk')
-rw-r--r--Examples/test-suite/common.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/Examples/test-suite/common.mk b/Examples/test-suite/common.mk
index db2a3d6f7..ff9b8538f 100644
--- a/Examples/test-suite/common.mk
+++ b/Examples/test-suite/common.mk
@@ -225,6 +225,7 @@ CPP_TEST_CASES += \
director_wombat \
disown \
duplicate_class_name_in_ns \
+ duplicate_parm_names \
dynamic_cast \
empty \
enum_ignore \