diff --git a/Doc/Manual/Doxygen.html b/Doc/Manual/Doxygen.html index 842f146d8..1e9bbb977 100644 --- a/Doc/Manual/Doxygen.html +++ b/Doc/Manual/Doxygen.html @@ -281,7 +281,7 @@ For example, you could use @transferfull Command ignored, but anything here is still included. */ -int * Fantastic() { } +int * Fantastic();

diff --git a/Examples/test-suite/doxygen_ignore.i b/Examples/test-suite/doxygen_ignore.i index ce83470b6..8e5449f43 100644 --- a/Examples/test-suite/doxygen_ignore.i +++ b/Examples/test-suite/doxygen_ignore.i @@ -36,6 +36,6 @@ @compileroptions This function must be compiled with /EHa when using MSVC. */ -int * func() { } +int * func() { return 0; } %}