mirror of https://github.com/swig/swig
Fix missing return value in doxygen test
This commit is contained in:
parent
6c0045b3fc
commit
b189fb9456
|
@ -281,7 +281,7 @@ For example, you could use
|
|||
|
||||
@transferfull Command ignored, but anything here is still included.
|
||||
*/
|
||||
int * Fantastic() { }
|
||||
int * Fantastic();
|
||||
</pre></div>
|
||||
|
||||
<p>
|
||||
|
|
|
@ -36,6 +36,6 @@
|
|||
|
||||
@compileroptions This function must be compiled with /EHa when using MSVC.
|
||||
*/
|
||||
int * func() { }
|
||||
int * func() { return 0; }
|
||||
|
||||
%}
|
||||
|
|
Loading…
Reference in New Issue