aboutsummaryrefslogtreecommitdiff
path: root/CHANGES.current
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-03-30 12:34:06 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-04-08 19:20:50 +0100
commit831fae3c698fd6a690d06aac257c381e69d474ea (patch)
tree568932167e6ecf93a196aea724d7b295d4b230a3 /CHANGES.current
parent06462acdf9b7738a19dce5579d90b1c91b3f9cfb (diff)
downloadswig-831fae3c698fd6a690d06aac257c381e69d474ea.tar.gz
Add the parameters typemap attribute to D and Java destructor wrapper typemaps
Added to the javadestruct, javadestruct_derived, ddispose, ddispose_derived typemaps to mirror enhanced flexibility in the csdisposing and csdisposing_derived (C#) typemaps. If provided the contents are generated as the delete/dispose method's parameters declaration.
Diffstat (limited to 'CHANGES.current')
-rw-r--r--CHANGES.current6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.current b/CHANGES.current
index 4cea8d91b..9e4b02d4d 100644
--- a/CHANGES.current
+++ b/CHANGES.current
@@ -8,6 +8,12 @@ Version 4.0.0 (in progress)
===========================
2019-03-30: wsfulton
+ [Java, D] Add the parameters typemap attribute to the javadestruct,
+ javadestruct_derived, ddispose, ddispose_derived typemaps to mirror enhanced
+ flexibility in the csdisposing and csdisposing_derived (C#) typemaps. If provided
+ the contents are generated as the delete/dispose method's parameters declaration.
+
+2019-03-30: wsfulton
[C#] #421 Fix CA1063 warning by implementing the recommended Dispose methods for
the IDisposable interface. Previously just the Dispose() method was generated.
Now the Dispose() and Dispose(bool disposing) methods are generated.