Remove semicolons after function definitions

This commit is contained in:
Olly Betts 2014-02-24 10:13:11 +13:00
commit 48476af609
2 changed files with 2 additions and 3 deletions

View file

@ -6868,7 +6868,7 @@ int spam(double a, double b, double *out1, double *out2) {
*out1 = a*10.0;
*out2 = b*100.0;
return status;
};
}
%}
/*

View file

@ -4688,8 +4688,7 @@ int spam(double a, double b, double *out1, double *out2) {
*out1 = result1;
*out2 = result2;
return status;
};
}
</pre></div>
<p>