Cosmetic stray semi-colon removal after %typemap

This commit is contained in:
William S Fulton 2022-08-20 15:23:15 +01:00
commit ec965840ce
3 changed files with 13 additions and 13 deletions

View file

@ -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);