summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python_flatstaticmethod.i
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2022-08-20 22:14:58 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2022-08-31 19:40:13 +0100
commitc10a84c77597695e3bdba37f35d251cb826d1d72 (patch)
tree269c5358ed15d7322d1185220036089a6cf0909d /Examples/test-suite/python_flatstaticmethod.i
parentec965840ce3fa59a9f09e9d09fefacaa617b54d5 (diff)
downloadswig-c10a84c77597695e3bdba37f35d251cb826d1d72.tar.gz
Cosmetic stray semi-colon removal after %typemap using quotes
Diffstat (limited to 'Examples/test-suite/python_flatstaticmethod.i')
-rw-r--r--Examples/test-suite/python_flatstaticmethod.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python_flatstaticmethod.i b/Examples/test-suite/python_flatstaticmethod.i
index c187e9adc..0e131d669 100644
--- a/Examples/test-suite/python_flatstaticmethod.i
+++ b/Examples/test-suite/python_flatstaticmethod.i
@@ -8,8 +8,8 @@
%feature("autodoc","0") A::func0static; // names
%feature("autodoc","1") A::func1static; // names + types
// special typemap and its docs
-%typemap(in) (int c, int d) "$1 = 0; $2 = 0;";
-%typemap(doc,name="hello",type="Tuple") (int c, int d) "hello: int tuple[2]";
+%typemap(in) (int c, int d) "$1 = 0; $2 = 0;"
+%typemap(doc,name="hello",type="Tuple") (int c, int d) "hello: int tuple[2]"
%extend A {
static int staticextended(int i) { return i; }