Remove semicolons after function definitions
This commit is contained in:
parent
431b9b16e7
commit
48476af609
2 changed files with 2 additions and 3 deletions
|
|
@ -6868,7 +6868,7 @@ int spam(double a, double b, double *out1, double *out2) {
|
|||
*out1 = a*10.0;
|
||||
*out2 = b*100.0;
|
||||
return status;
|
||||
};
|
||||
}
|
||||
%}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -4688,8 +4688,7 @@ int spam(double a, double b, double *out1, double *out2) {
|
|||
*out1 = result1;
|
||||
*out2 = result2;
|
||||
return status;
|
||||
};
|
||||
|
||||
}
|
||||
</pre></div>
|
||||
|
||||
<p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue