Fix missing return value in doxygen test

This commit is contained in:
William S Fulton 2018-06-07 18:52:25 +01:00
parent 6c0045b3fc
commit b189fb9456
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -36,6 +36,6 @@
@compileroptions This function must be compiled with /EHa when using MSVC.
*/
int * func() { }
int * func() { return 0; }
%}