summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-08-20 15:23:15 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-08-20 15:29:49 +0100
commitec965840ce3fa59a9f09e9d09fefacaa617b54d5 (patch)
tree0566537e837348a7df4aa5d20e05dd3d5bb55a5f /CHANGES
parent0ba11023acfc80689ccb58efa91eaf55c2d60e3b (diff)
downloadswig-ec965840ce3fa59a9f09e9d09fefacaa617b54d5.tar.gz
Cosmetic stray semi-colon removal after %typemap
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 05834910a..89bcac60c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -19614,8 +19614,8 @@ Version 1.3.12 (June 2, 2002)
typemap must exactly match up with the "in" or "ignore"
typemap. For example:
- %typemap(in) (char *data, int len) { ... };
- %typemap(freearg) char *data { ... };
+ %typemap(in) (char *data, int len) { ... }
+ %typemap(freearg) char *data { ... }
void foo(char *data, int len);